Nice to meet you all! I wanna get value from a column with the simple following code:
String statement = "select rated,vote_count from iptv_media_source where channel_id= '"
+ channelId + "'";
float rated = 0;
int vote_count =0;
try {
rs =Main.db.getCon().createStatement().executeQuery(statement);
rated = rating.getFloat("rated");
vote_count = rating.getInt("vote_count");
vote_count++; rated++;
statement = "UPDATE iptv_media_source SET rated = '"+rated+"' , vote_count = '"+vote_count+"' WHERE channel_id= '" + channelId + "'";
Main.db.getCon().createStatement().executeUpdate(statement);
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
The UPDATE statement runs well, but these 2 lines:
rated = rating.getFloat("rated");
vote_count = rating.getInt("vote_count");
got some problems. Thanks for any reply!
ratingis declared nowhere. – A.H. Nov 5 '11 at 14:25