JDBC二(数据库连接)

JDBC—数据库连接

一.加载驱动:

在打开与数据库的JDBC连接之前,需要加载数据库的驱动程序,驱动程序只需加载一次,不需要在每次打开连接之前都进行加载操作。且每个JDBC驱动都有对驱动程序类。如:

  • mysql:
Class.forName("com.mysql.jdbc.Driver");
  • oracle:
Class.forName("oracle.jdbc.driver.OracleDriver");

二.创建连接

创建连接是通过java.sql.DriverManager类中的getConnection()方法,如下:

  • 没有密码:
String url = "jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC";
Connection connection = DriverManager.getConnection(url);
  • 需要密码:
String url = "jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC";
Connection connection = DriverManager.getConnection(url, "root", "123456");
  • 使用属性:
Properties properties = new Properties();
properties.put("user", "root");
properties.put("password", "123456");
Connection connection =DriverManager.getConnection(url, properties);

三.执行SQL语句

当数据库连接成功后,便可以执行诸如查询,修改之类的sql语句,代码如下:

Statement statement = connection.createStatement();
String sql = "select * from user";
ResultSet resultSet = statement.executeQuery(sql);

四.关闭连接

connection.close();

五.完整示例

public static void main(String[] args) throws Exception {
		Class.forName("com.mysql.jdbc.Driver");

		Connection connection = null;
		Statement statement = null;
		ResultSet resultSet = null;
		try {
			String url = "jdbc:mysql://localhost:3306/test?useSSL=false&serverTimezone=UTC";
			connection = DriverManager.getConnection(url, "root", "123456");

			statement = connection.createStatement();
			String sql = "select * from user";
			resultSet = statement.executeQuery(sql);

			resultSet.beforeFirst();
			while (resultSet.next()) {
				System.out.println(resultSet.getString(1));
			}
		} catch (Throwable t) {
			t.printStackTrace();
		} finally {
			if (resultSet != null) {
				resultSet.close();
			}
			if (statement != null) {
				statement.close();
			}
			if (connection != null) {
				connection.close();
			}
		}

	}
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值