本文主要是介绍Java程序设计——execute()与executeUpdate()(JDBC编程),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
目录
一、execute()
二、executeUpdate
一、execute()
execute():几乎可以执行任何SQL语句,返回值是boolean值,表明该SQL语句是否返回ResultSet对象
boolean值:
- true:使用getResultSet()方法获取返回的ResultSet对象
- false:使用getUpdateCount()方法获取返回所影响的行数
import java.sql.*;
public class TestDemo {public static void main(String[] args) {JDBCDemo jdbc = new JDBCDemo();}
}class JDBCDemo{public JDBCDemo() {try {// 1.Class.forName("com.mysql.cj.jdbc.Driver");// 2.Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/de?characterEncoding=gb2312&serverTimezone=UTC&useSSL=false", "root", "root");// 3.Statement stmt = con.createStatement();// 4.String sql = "SELECT * FROM tb_student"; // sql语句Boolean bool = stmt.execute(sql); System.out.println("bool = " + bool);if (bool) {ResultSet rs = stmt.getResultSet(); // 获取ResultSet对象// 5.while(rs.next()){int studentNo = rs.getInt(1); // 指定第几列 String studentName = rs.getString("studentName"); // 指定列名称System.out.println(studentNo + "---" + studentName);}// 6.rs.close();stmt.close();con.close();}} catch (SQLException | ClassNotFoundException e) {e.printStackTrace();}}
}
二、executeUpdate
executeUpdate():用于执行DDL和DML语句,返回值为所影响的行数
executeUpdate增强版(Java8新增):executeLargeUpdate(),返回值为long类型,适用于DML语句的记录超过Interger.MAX_VALUES的情况
import java.sql.*;
public class TestDemo {public static void main(String[] args) throws ClassNotFoundException, SQLException {JDBCDemo jdbc = new JDBCDemo();}
}class JDBCDemo{public JDBCDemo() throws SQLException, ClassNotFoundException {// 1.Class.forName("com.mysql.cj.jdbc.Driver");// 2.Connection con = DriverManager.getConnection("jdbc:mysql://localhost:3306/de?characterEncoding=gb2312&serverTimezone=UTC&useSSL=false", "root", "root");// 3.Statement stmt = con.createStatement();// 4.String sql = "UPDATE tb_student SET studentName='狗蛋' WHERE studentNo=2013110101"; // sql语句int res = stmt.executeUpdate(sql); // 5.System.out.println( "所影响的记录行数:" + res );// 6stmt.close();con.close();}}
这篇关于Java程序设计——execute()与executeUpdate()(JDBC编程)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!