从 ResultSet 获取列宽度/长度的最简单方法 - 我必须迭代吗?
我需要从仅知道其名称的 ResultSet/ResultSetMetaData
获取列宽度/长度?我可以创建名称到索引的映射并以这种方式获取它,但是还有其他方法吗?
I need to get the column width/length from a ResultSet/ResultSetMetaData
knowing only its name? I could create a map of names to indexes and get it that way, but is there another way?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 ResultSetMetaData 获取列、类型等。
如果不进行迭代,则无法获取返回的行数。
You can get the columns, types and lots more from ResultSetMetaData.
You can't get the number of rows returned without iterating through it.