通过SQL语句查询到了学号的最大值,那如何在java中将其输出/取得。
Stringstrsql="selectMAX(stuId)fromstus;";那如何取得这个最大值在java中输出呢?...
String strsql="select MAX(stuId) from stus;";
那如何取得这个最大值在java中输出呢? 展开
那如何取得这个最大值在java中输出呢? 展开
3个回答
展开全部
public static void main(String[] args) throws Exception {
//加载驱动
Class.forName("com.mysql.jdbc.Driver");
//建立连接
Connection conn = DriverManager.getConnection("jdbc:mysql://" +
"localhost/world?user=root&password=3496fire");
Statement stat = null;
ResultSet rs=null;
//创建语句
String strsql="select MAX(stuId) from stus;";
stat=conn.createStatement();
//执行语句,得到结果
rs=stat.executeQuery(strsql);
//使结果集光标向前移动一行
rs.next();
//输出结果结果中的第一个元素
System.out.println(rs.getInt(1));
//关闭连接
rs.close();
stat.close();
conn.close();
}
我的是MySQL的例子
加载驱动的前提是你把对应的数据库的JDBC的jar文件导入到工程中或者在classpath中;
建立连接的URL不同数据库也是不一样的,这个可以自己去找找;
这里面有很地方会有异常,你可以先抛出;
//加载驱动
Class.forName("com.mysql.jdbc.Driver");
//建立连接
Connection conn = DriverManager.getConnection("jdbc:mysql://" +
"localhost/world?user=root&password=3496fire");
Statement stat = null;
ResultSet rs=null;
//创建语句
String strsql="select MAX(stuId) from stus;";
stat=conn.createStatement();
//执行语句,得到结果
rs=stat.executeQuery(strsql);
//使结果集光标向前移动一行
rs.next();
//输出结果结果中的第一个元素
System.out.println(rs.getInt(1));
//关闭连接
rs.close();
stat.close();
conn.close();
}
我的是MySQL的例子
加载驱动的前提是你把对应的数据库的JDBC的jar文件导入到工程中或者在classpath中;
建立连接的URL不同数据库也是不一样的,这个可以自己去找找;
这里面有很地方会有异常,你可以先抛出;
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |