当前位置: 技术问答>.net/c#/asp.net
iis7站长之家
超级简单的问题
来源: 互联网 发布时间:2015-06-29
本文导语: 如何返回记录数目的int ResultSet countryResult = simpleStat.executeQuery("select COUNT(*)from Country"); countryCount = countryResult.getInt(); 好像不行啊 | 哈哈,问题没说清楚,看了两遍才看懂:( ...
如何返回记录数目的int
ResultSet countryResult = simpleStat.executeQuery("select COUNT(*)from Country");
countryCount = countryResult.getInt(); 好像不行啊
ResultSet countryResult = simpleStat.executeQuery("select COUNT(*)from Country");
countryCount = countryResult.getInt(); 好像不行啊
|
哈哈,问题没说清楚,看了两遍才看懂:(
没有next
if (countryResult.next()){
countryCount = countryResult.getInt(1)
}
不过我是习惯于getString后在转的,西西,copy起来方便:)
没有next
if (countryResult.next()){
countryCount = countryResult.getInt(1)
}
不过我是习惯于getString后在转的,西西,copy起来方便:)
|
哈哈,看看ResultSetMetaData,这个类是描叙相应ResultSet的超级工具,呵呵,自己仔细研究一下,绝对有益!! metadata:元数据。 GOOD LUCK!
|
countryResult.last();
int count = countryResult.getRow();
countryResult.first();
int count = countryResult.getRow();
countryResult.first();
您可能感兴趣的文章:
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。