MySQL詳解進行JDBC編程與增刪改查方法
Java的數據庫編程JDBC
概念
- JDBC是一種用於執行sql語句的Java API,他是java中的數據庫連接規范,這個API由一些接口和類組成。它為java開發人員操作數據庫提供瞭一個標準的API,可以為多種關系數據庫提供統一訪問
- 本質是通過代碼自己實現一個MySQL客戶端,通過網絡和服務器進行數據的交互,客戶端不能憑空出現,所以數據庫提供瞭一組API方便我們實現
- 數據庫的種類有很多,不同的數據庫提供的API不太一樣,所以java為瞭解決這一問題提供瞭JDBC,java自帶的一種數據庫操作API,這種API覆蓋所有數據庫操作的操作方式
- 本質上是java自身完成瞭JDBC API和數據庫API之間進行轉換
使用步驟
創建DataSource對象,這個對象就描述瞭數據庫服務器在哪
DataSource dataSource = new MysqlDataSource(); //設置數據庫所在的地址 ((MysqlDataSource)dataSource).setURL("jdbc:mysql://127.0.0.1:3306/lmp?characterEncoding=utf8&useSSL=false"); //設置登錄數據庫的用戶名 ((MysqlDataSource)dataSource).setUser("root"); //設置登錄數據庫的密碼 ((MysqlDataSource)dataSource).setPassword("woshizhu123");
通過Connection連接數據庫(輸入密碼連接成功)
//import java.sql.Connection; Connection connection = dataSource.getConnection();
拼接sql語句(寫入sql語句)
String sql = "insert into student values(1,'張三')";
將sql語句包裝成對象
PreparedStatement statement = connection.prepareStatement(sql);
執行sql語句(按下回車執行sql語句)
int ret = statement.executeUpdate();
- 執行 update delete insert 使用 executeUpdate() 方法
- 執行 select 使用 executeQuery() 方法
- 使用 executeQuery() 方法 會返回一個resultSet集合, 包含查找到的數據, 初始情況下resultSet不指向任一行記錄, 使用next,讓他指向第一條記錄, 再使用next指向下一條記錄
釋放資源
statement.close(); connection.close();
利用JDBC實現增加(insert)
public class TestJDBC { public static void main(String[] args) throws SQLException { Scanner scanner = new Scanner(System.in); DataSource dataSource = new MysqlDataSource(); ((MysqlDataSource)dataSource).setURL("jdbc:mysql://127.0.0.1:3306/java102?characterEncoding=utf-8&useSSL=false"); ((MysqlDataSource)dataSource).setUser("root"); ((MysqlDataSource)dataSource).setPassword("woshizhu123"); Connection connection = dataSource.getConnection(); System.out.println("輸入id"); int id = scanner.nextInt(); System.out.println("輸入名字"); String name = scanner.next(); String sql = "insert into student values(?,?)"; PreparedStatement statement = connection.prepareStatement(sql); statement.setInt(1,id); statement.setString(2,name); int ret = statement.executeUpdate(); if(ret == 1){ System.out.println("插入成功"); }else { System.out.println("插入失敗"); } statement.close(); connection.close(); } }
利用JDBC實現刪除(delete)
public class TestJDBCDelete { public static void main(String[] args) throws SQLException { DataSource dataSource = new MysqlDataSource(); ((MysqlDataSource)dataSource).setURL("jdbc:mysql://127.0.0.1:3306/java102?characterEncoding=utf8&useSSL=false"); ((MysqlDataSource)dataSource).setUser("root"); ((MysqlDataSource)dataSource).setPassword("woshizhu123"); Connection connection = dataSource.getConnection(); Scanner scanner = new Scanner(System.in); System.out.println("請輸入要刪除的id"); int id = scanner.nextInt(); String sql = "delete from student where id = ?"; PreparedStatement preparedStatement = connection.prepareStatement(sql); preparedStatement.setInt(1,id); int ret = preparedStatement.executeUpdate(); System.out.println(ret); preparedStatement.close(); connection.close(); }
利用JDBC實現修改(update)
public class TestJDBCUpdate { public static void main(String[] args) throws SQLException { DataSource dataSource = new MysqlDataSource(); ((MysqlDataSource)dataSource).setURL("jdbc:mysql://127.0.0.1:3306/java102?characterEncoding=utf8&useSSL=false"); ((MysqlDataSource)dataSource).setUser("root"); ((MysqlDataSource)dataSource).setPassword("woshizhu123"); Connection connection = dataSource.getConnection(); Scanner scanner = new Scanner(System.in); System.out.println("請輸入要修改的學生id"); int id = scanner.nextInt(); System.out.println("請輸入要修改的學生姓名"); String name = scanner.next(); String sql = "update student set name = ? where id = ?"; PreparedStatement statement = connection.prepareStatement(sql); statement.setString(1,name); statement.setInt(2,id); int ret = statement.executeUpdate(); System.out.println(ret); statement.close(); connection.close(); } }
利用JDBC實現查找(select)
public static void testJDBCSelect() throws SQLException { //1創建DataSource對象 DataSource dataSource = new MysqlDataSource(); //2連接數據庫 ((MysqlDataSource)dataSource).setURL("jdbc:mysql://127.0.0.1:3306/java_5_31?characterEncoding=utf-8&useSSL=true"); ((MysqlDataSource)dataSource).setUser("root"); ((MysqlDataSource)dataSource).setPassword("listen"); Connection connection = dataSource.getConnection(); //3拼接sql String sql = "select * from student"; PreparedStatement statement = connection.prepareStatement(sql); //4執行sql ResultSet resultSet = statement.executeQuery(); //5遍歷得到的集合 while (resultSet.next()) { int id = resultSet.getInt("id"); String name = resultSet.getString("name"); int classId = resultSet.getInt("classId"); System.out.println("id " + id + " name " + name + " classId " + classId); } //6關閉資源 resultSet.close(); statement.close(); connection.close(); }
到此這篇關於MySQL詳解進行JDBC編程與增刪改查方法的文章就介紹到這瞭,更多相關MySQL JDBC編程內容請搜索WalkonNet以前的文章或繼續瀏覽下面的相關文章希望大傢以後多多支持WalkonNet!