我创建了一个程序,我需要解析并从数据库中将值转换为整数并将其放到JLabel中,问题是显示的值始终为0,但是当我在数据库中检查语句时它显示正确的值。 代码:
try {
conn = DriverManager.getConnection("database....");
stat = conn.createStatement();
result = stat.executeQuery("statement...(works fine) ");
integerx = ((Number) result.getObject(1)).intValue();
result.close();
stat.close();
}catch (Exception e){
}
label.setText("the value is : " + integerx );
如何从数据库中获取值?数据仅限于显示1列和1行。
答案 0 :(得分:0)
integerx = result.getInt(1); // if the data exist on the first column