1.获取数据库的连接
主要方法:
ClassLoader.getResourceAsStream()
Properties pros =new Properties()
pros.load()
Class.forName()
DriverManage.getConnection()
2.预编译sql语句,返回PropapredStatement实例
3.填充占位符
4.执行语句
execute()
5.资源的关闭
1.获取数据库的连接
主要方法:
ClassLoader.getResourceAsStream()
Properties pros =new Properties()
pros.load()
Class.forName()
DriverManage.getConnection()
2.预编译sql语句,返回PropapredStatement实例
3.填充占位符
4.执行语句
execute()
5.资源的关闭