【JDBC-Mysql】使用 JDBC 操作 Mysql 数据库 1)导入依赖 2)定义Connection连接类 3)使用JDBC进行Mysql数据库操作
1)导入依赖
< dependency> < groupId> mysql</ groupId> < artifactId> mysql-connector-java</ artifactId> < version> 5.7.27</ version>
</ dependency>
2)定义Connection连接类
public class Conn { public static final String driver = "com.mysql.jdbc.Driver" ; public static Connection getConnection ( String url, String username, String password) { Connection conn = null ; try { Class . forName ( driver) ; conn = DriverManager . getConnection ( url, username, password) ; } catch ( ClassNotFoundException e) { e. printStackTrace ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } return conn; } public static void close ( Connection conn, PreparedStatement ps, ResultSet rs) { if ( conn != null ) { try { conn. close ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } } if ( ps != null ) { try { ps. close ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } } if ( rs != null ) { try { rs. close ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } } } public static void close ( Connection conn, PreparedStatement ps) { if ( conn != null ) { try { conn. close ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } } if ( ps != null ) { try { ps. close ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } } }
}
3)使用JDBC进行Mysql数据库操作
3.1.写入
public class Test { private static final String tmpUrl = "jdbc:mysql://192.168.1.1:3306/test?characterEncoding=utf-8" ; private static final String tmpUsername = "root" ; private static final String tmpPassword = "123456" ; private static Connection conn; private static PreparedStatement ps; private static ResultSet rs; public static void main ( String [ ] args) { conn = Conn . getConnection ( tmpUrl, tmpUsername, tmpPassword) ; try { ps = conn. prepareStatement ( "insert into `table` values(1234, '张三')" ) ; rs = ps. executeUpdate ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } finally { Conn . close ( conn, ps, rs) ; } }
}
3.2.删除
public class Test { private static final String tmpUrl = "jdbc:mysql://192.168.1.1:3306/test?characterEncoding=utf-8" ; private static final String tmpUsername = "root" ; private static final String tmpPassword = "123456" ; private static Connection conn; private static PreparedStatement ps; private static ResultSet rs; public static void main ( String [ ] args) { conn = Conn . getConnection ( tmpUrl, tmpUsername, tmpPassword) ; try { ps = conn. prepareStatement ( "delete from `table` where id = ?" ) ; ps. setInt ( 1 , 1234 ) rs = ps. executeUpdate ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } finally { Conn . close ( conn, ps, rs) ; } }
}
3.3.修改
public class Test { private static final String tmpUrl = "jdbc:mysql://192.168.1.1:3306/test?characterEncoding=utf-8" ; private static final String tmpUsername = "root" ; private static final String tmpPassword = "123456" ; private static Connection conn; private static PreparedStatement ps; private static ResultSet rs; public static void main ( String [ ] args) { conn = Conn . getConnection ( tmpUrl, tmpUsername, tmpPassword) ; try { ps = conn. prepareStatement ( "update `table` set name = '张三' where id = ?" ) ; ps. setInt ( 1 , 1234 ) rs = ps. executeUpdate ( ) ; } catch ( SQLException e) { e. printStackTrace ( ) ; } finally { Conn . close ( conn, ps, rs) ; } }
}
3.4.查询
public class Test { private static final String tmpUrl = "jdbc:mysql://192.168.1.1:3306/test?characterEncoding=utf-8" ; private static final String tmpUsername = "root" ; private static final String tmpPassword = "123456" ; private static Connection conn; private static PreparedStatement ps; private static ResultSet rs; public static void main ( String [ ] args) { conn = Conn . getConnection ( tmpUrl, tmpUsername, tmpPassword) ; try { ps = conn. prepareStatement ( "SELECT `id`, `name` FROM `table`" ) ; rs = ps. executeQuery ( ) ; while ( rs. next ( ) ) { int id = rs. getInt ( 1 ) ; String name = rs. getString ( 2 ) ; } } catch ( SQLException e) { e. printStackTrace ( ) ; } finally { Conn . close ( conn, ps, rs) ; } }
}