ResultSet:结果集对象,封装查询结果
next() //游标向下移动一行
getXxx(); //获取数据 *int getInt() *String getString()
/*
int:代表列的编号,从1开始 getString(1)
String:代表列名称 getDouble("balance")
*/
ResultSet:结果集对象,封装查询结果
next() //游标向下移动一行
getXxx(); //获取数据 *int getInt() *String getString()
/*
int:代表列的编号,从1开始 getString(1)
String:代表列名称 getDouble("balance")
*/