由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Java版 - MySQL JDBC 问题
相关主题
Open Too Many Cursor IssueJava GC 为什么不能自动释放jdbc connection?
Quick jdbc question, help needed, thx!java后端开发
JDBC如何获取新加入的记录的索引JDBC/stored procedure读取性能问题
Java调用Oracle存储过程的问题请问JSP/SERVLET和MYSQL如何实现照片上载和调用
用jdbc从oracle pull out的row data怎么分页显示如何遍历hashtable里边的每一项?
How to get all tables in a schema in Oracle 9i using its JDBC driver?TOMCAT的JDBC问题?
Java笔试题分享-Database改写(migrate) stored proc 问题
newbie questionDATE TIME In RDBMS
相关话题的讨论汇总
话题: resultset话题: mysql话题: jdbc话题: rs话题: 返回
进入Java版参与讨论
1 (共1页)
r**e
发帖数: 57
1
当一个query返回0项结果时,resultset里面是什么?
为什么我用:
ResultSet rs;
rs = .... (should return nothing)
rs.equals(null) 或者 rs.wasNull()都给我返回false?
谢谢!
c***y
发帖数: 114
2
A ResultSet object maintains a cursor pointing to its current row of
data. Initially the cursor is positioned before the first row. When
there no more rows in the object, it returns false.

【在 r**e 的大作中提到】
: 当一个query返回0项结果时,resultset里面是什么?
: 为什么我用:
: ResultSet rs;
: rs = .... (should return nothing)
: rs.equals(null) 或者 rs.wasNull()都给我返回false?
: 谢谢!

c***y
发帖数: 114
3
and that's why it can be used in a while loop to iterate through the result
set.

【在 c***y 的大作中提到】
: A ResultSet object maintains a cursor pointing to its current row of
: data. Initially the cursor is positioned before the first row. When
: there no more rows in the object, it returns false.

b*e
发帖数: 3845
4
the method we always use is
rs.read()

【在 r**e 的大作中提到】
: 当一个query返回0项结果时,resultset里面是什么?
: 为什么我用:
: ResultSet rs;
: rs = .... (should return nothing)
: rs.equals(null) 或者 rs.wasNull()都给我返回false?
: 谢谢!

F****n
发帖数: 3271
5

~~~~~~~~~~~~~
这个真经典。。。

【在 r**e 的大作中提到】
: 当一个query返回0项结果时,resultset里面是什么?
: 为什么我用:
: ResultSet rs;
: rs = .... (should return nothing)
: rs.equals(null) 或者 rs.wasNull()都给我返回false?
: 谢谢!

1 (共1页)
进入Java版参与讨论
相关主题
DATE TIME In RDBMS用jdbc从oracle pull out的row data怎么分页显示
用AWS Elastic Beanstalk怎么配置连接MySQL数据库?How to get all tables in a schema in Oracle 9i using its JDBC driver?
本地spring,网络mysql,必须port forwarding吗?Java笔试题分享-Database
求OpenShift上Spring-quickstart的mysql配置方法newbie question
Open Too Many Cursor IssueJava GC 为什么不能自动释放jdbc connection?
Quick jdbc question, help needed, thx!java后端开发
JDBC如何获取新加入的记录的索引JDBC/stored procedure读取性能问题
Java调用Oracle存储过程的问题请问JSP/SERVLET和MYSQL如何实现照片上载和调用
相关话题的讨论汇总
话题: resultset话题: mysql话题: jdbc话题: rs话题: 返回