当前位置: 技术问答>java相关
使用prepareCall调用存储过程,传送了TYPE_SCROLL_INSENSITIVE参数,但仍然无法实现分页功能.
来源: 互联网 发布时间:2015-08-14
本文导语: 我是用如下一段程序来调用存储过程,并将结果分页的。 然而每次执行都得到: exception = Result Set type is Type_Forward_only这样的错误。而我已经在prepareCall中设定了结果集“滚动不敏感”。 不明白为什么它会变成For...
我是用如下一段程序来调用存储过程,并将结果分页的。
然而每次执行都得到: exception = Result Set type is Type_Forward_only这样的错误。而我已经在prepareCall中设定了结果集“滚动不敏感”。
不明白为什么它会变成Forward_only.
int concurType = ResultSet.CONCUR_READ_ONLY;
int scrollType = ResultSet.TYPE_SCROLL_INSENSITIVE;
ResultSet rs = null;
DBConnect();
if (conn == null) {
System.out.print(" conn=null,");
return null;
}
try {
String strSQL = "{call searchByCategoryId(?)}";
CallableStatement sqlStmt = conn.prepareCall(strSQL,scrollType, concurType);
sqlStmt.setInt(1,CategoryID);
if (pageNumber
然而每次执行都得到: exception = Result Set type is Type_Forward_only这样的错误。而我已经在prepareCall中设定了结果集“滚动不敏感”。
不明白为什么它会变成Forward_only.
int concurType = ResultSet.CONCUR_READ_ONLY;
int scrollType = ResultSet.TYPE_SCROLL_INSENSITIVE;
ResultSet rs = null;
DBConnect();
if (conn == null) {
System.out.print(" conn=null,");
return null;
}
try {
String strSQL = "{call searchByCategoryId(?)}";
CallableStatement sqlStmt = conn.prepareCall(strSQL,scrollType, concurType);
sqlStmt.setInt(1,CategoryID);
if (pageNumber
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。