有没有人尝试过从Java中调用带有多级列表参数的NuoDB存储过程?
有没有什么好用的例子呢?如果有人做到了这一点,请分享。
发布于 2020-04-01 06:22:35
我不清楚你所说的“多级列表参数”是什么意思。
我能想到:
- Eg: CREATE PROCEDURE prc\_rs\_input (IN tmphockey (number INTEGER, name STRING) ) See: [http://doc.nuodb.com/Latest/Default.htm#SQL-Procedural-Result-Set-As-Input.htm](http://doc.nuodb.com/Latest/Default.htm#SQL-Procedural-Result-Set-As-Input.htm)
- However, I don't think JDBC has support for a ResultSet parameter; I can confirm if that is what you are after.
- and I believe this works with the JDBC multiple Results API; See: [http://doc.nuodb.com/Latest/Default.htm#SQL-Procedural-Returning-Multiple-Result-Sets.htm](http://doc.nuodb.com/Latest/Default.htm#SQL-Procedural-Returning-Multiple-Result-Sets.htm)
https://stackoverflow.com/questions/60948284
复制相似问题