博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
mySQL程序与数据库连接帮助
阅读量:5062 次
发布时间:2019-06-12

本文共 1255 字,大约阅读时间需要 4 分钟。

public class SQLconnection {

/**连接数据库的名字*/
private static String username;
/**连接数据库的密码*/
private static String userpwd;
/**连接数据库的路径*/
private static String url;
/**
* 静态初始化块,从Properties文件中获取数据库连接的必要参数

*Properties文件中的内容包括有

*url:jdbc:mysql://127.0.0.1:3306/crm\?useUnicode=true&characterEncoding=UTF-8

*name:root

*pwd:admin

*/
static{
Properties pro = new Properties();
try {
pro.load(new FileInputStream("./src/sql.properties"));
url=pro.getProperty("url");
username=pro.getProperty("name");
userpwd=pro.getProperty("pwd");
} catch (IOException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
/**
* 联接数据库
* @return 一个数库连接
*/
public static Connection getConnection() {
Connection conn = null;
try {
Class.forName("com.mysql.jdbc.Driver");
conn = DriverManager.getConnection(url,username,userpwd);
} catch (ClassNotFoundException e) {
// TODO Auto-generated catch block
e.printStackTrace();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
return conn;
}
/**
* 关闭数据库连接
* @param conn 一个数据库连接
*/
public static void closeConnection(Connection conn){
try {
conn.close();
} catch (SQLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}
}

 

转载于:https://www.cnblogs.com/quanby/p/5521341.html

你可能感兴趣的文章
Android TextView加上阴影效果
查看>>
OA项目设计的能力③
查看>>
《梦断代码》读书笔记(三)
查看>>
Java8 Lambda表达应用 -- 单线程游戏server+异步数据库操作
查看>>
[Unity3D]Unity3D游戏开发MatchTarget的作用攀登效果实现
查看>>
AngularJS学习篇(一)
查看>>
关于Xshell无法连接centos6.4的问题
查看>>
css3动画——基本准则
查看>>
输入月份和日期,得出是今年第几天
查看>>
pig自定义UDF
查看>>
Kubernetes 运维学习笔记
查看>>
spring security 11种过滤器介绍
查看>>
代码实现导航栏分割线
查看>>
大数据学习系列(8)-- WordCount+Block+Split+Shuffle+Map+Reduce技术详解
查看>>
【AS3代码】播放FLV视频流的三步骤!
查看>>
枚举的使用
查看>>
luogu4849 寻找宝藏 (cdq分治+dp)
查看>>
日志框架--(一)基础篇
查看>>
关于源程序到可运行程序的过程
查看>>
转载:mysql数据库密码忘记找回方法
查看>>