标签:tin from 函数 code sel 字段名 获取 exec select
代码如下:
1 ResultSet rs = stmt.executeQuery("SELECT sum() from...."); 2 int keyValue = -1; 3 if (rs.next()) { 4 keyValue = rs.getInt(1); 5 }
rs.getInt()里面的参数也可以是字段名,
比如:
rs.getInt("pNum");
标签:tin from 函数 code sel 字段名 获取 exec select
原文地址:http://www.cnblogs.com/wendu/p/6060320.html