读取连接数据库信息

2021/10/25 19:14:42

本文主要是介绍读取连接数据库信息,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!

/*
	从属性资源文件中读取连接数据库信息
	实际开发中不建议把连接数据库的信息写死到java程序中
	配置文件jdbc.properties
		driver=com.mysql.jdbc.Driver
		url=jdbc:mysql://localhost:3306/bjpowernode
		user=root
		password=123456
*/
import java.sql.*;
import java.url.*;
public class JDBCTest04{
	public static void main(String [] args){
		//使用资源绑定器绑定属性配置文件
		ResourceBundle bundle=ResourceBundle.getBundle("jdbc");
		String driver=bundle.getString("driver");
		String url=bundle.getString("url");
		String user=bundle.getString("user");
		String password=bundle.getString("password");
		
		Connection conn=null;
		Statement stmt=null;
		try{
			//1.注册驱动
			Class.forName(driver);
			//2.获取链接
			conn=DriverManager.getConnection(url,user,password);
			//3.获取数据库操作对象
			stmt=conn.createStatement();
			//4.执行sql语句
			String sql="update dept set dname='销售部',loc='天津' where deptno=20";
			int count=stmt.executeUpdate(sql);
			System.out.println(count==1?"更新成功":"更新失败");
		}catch(Exception e){
			e.printStackTrace();
		}finally{
			//6.释放资源
			if(smt!=null){
				try{
					smt.close();
				}catch(SQLException e){
					e.printStackTrace();
				}
			}
			if(conn!=null){
				try{
					conn.close();
				}catch(SQLException e){
					e.printStackTrace();
				}
			}
		}
	}
}

  



这篇关于读取连接数据库信息的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!


扫一扫关注最新编程教程