<% Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
   Connection con;
    Statement stmt;
ResultSet s;
con=DriverManager.getConnection("jdbc:odbc:drink");
    stmt=con.createStatement();
s=stmt.executeQuery("select 数量  from  drinklist where 商品='"可乐"'");
s--;
String sql="UPDATE drinklist SET 数量 = '"+s+"'  WHERE 商品='"可乐"'"; 
    stmt.executeUpdate(sql);  
%>
更新数据库中可乐的数量,进行减一操作,提示错误:无法将ResultSet类型转换为int型
怎么解决??