Java中使用JDBC连接数据库
程序员文章站
2022-06-23 11:14:15
Java中使用JDBC连接数据库1、加载驱动类2、建立链接3、创建 Statement 实例 ( 负责向数据库服务器发送SQL语句 和 接收数据库服务器返回的执行结果 )4、发送SQL给数据库服务器 ( 有些资料说这是执行SQL ) 并 获取数据库的执行结果5、处理返回结果6、释放资源连接MySQL数据库 public static void main(String[] args) throws ClassNotFoundException, SQLException {...
Java中使用JDBC连接数据库
1、加载驱动类
2、建立链接
3、创建 Statement 实例 ( 负责向数据库服务器发送SQL语句 和 接收数据库服务器返回的执行结果 )
4、发送SQL给数据库服务器 ( 有些资料说这是执行SQL ) 并 获取数据库的执行结果
5、处理返回结果
6、释放资源
连接MySQL数据库
public static void main(String[] args) throws ClassNotFoundException, SQLException {
String driverClassName = "com.mysql.cj.jdbc.Driver" ;
String url = "jdbc:mysql://localhost:3306/ayan?serverTimezone=Asia/Shanghai" ;
String user = "root" ;
String password = "" ;
// 1、加载驱动类
Class<?> c = Class.forName( driverClassName );
System.out.println( c );
// 2、建立链接
Connection connection = DriverManager.getConnection( url , user , password );
// 3、创建 Statement 实例 ( 负责向数据库服务器发送SQL语句 和 接收数据库服务器返回的执行结果 )
Statement statement = connection.createStatement();
// 4、发送SQL给数据库服务器 ( 有些资料说这是执行SQL ) 并 获取数据库的执行结果
int count = statement.executeUpdate( "UPDATE t_users SET name = '阿颜妹妹' " );
// 5、处理返回结果
System.out.println( count );
// 6、释放资源
statement.close();
connection.close();
}
连接Oracle数据库
public static void main(String[] args) throws ClassNotFoundException, SQLException {
String driverClassName = "oracle.jdbc.driver.OracleDriver" ;
String url = "jdbc:oracle:thin:@localhost:1521:T2081" ;
String user = "ayan" ;
String password = "ayan" ;
// 1、加载驱动类
Class<?> c = Class.forName( driverClassName );
System.out.println( c );
// 2、建立链接
Connection connection = DriverManager.getConnection( url , user , password );
// 3、创建 Statement 实例 ( 负责向数据库服务器发送SQL语句 和 接收数据库服务器返回的执行结果 )
Statement statement = connection.createStatement();
// 4、发送SQL给数据库服务器 ( 有些资料说这是执行SQL ) 并 获取数据库的执行结果
int count = statement.executeUpdate( "UPDATE t_users SET name = '阿颜妹妹' " );
// 5、处理返回结果
System.out.println( count );
// 6、释放资源
statement.close();
connection.close();
}
本文地址:https://blog.csdn.net/weixin_51600120/article/details/110948907
下一篇: 045-xhtml dtd