标签:HERE public one ati tco div result 创建 upd
1.JDBC为什么会存在?
2.JDBC的实现基于这样的思想:根据JDBC编写的程序能够与一个驱动管理器通信,驱动管理器通过驱动程序与实际的数据库进行通信。
3.如何使用JDBC与数据库连接?
使用mysql作为例子:(mysql-connection-java jar)
4.代码演示:
使用jdbc查询id=1的name值
import java.sql.*; public class JDBCTest1 { public static void jdbctest(){ try { Class.forName("com.mysql.cj.jdbc.Driver"); Connection connection=DriverManager.getConnection("jdbc:mysql://localhost:3306/datatest?" + "useEncoding=true&characterEncoding=utf-8&serverTimezone=UTC","root","123456"); //这里的连接符号是&,而在spring的配置文件中使用的是& String sql="select * from student where id=?"; PreparedStatement preparedStatement=connection.prepareStatement(sql); preparedStatement.setInt(1,1); ResultSet resultSet= preparedStatement.executeQuery(); while(resultSet.next()){ System.out.println(resultSet.getString("name")); } resultSet.close(); preparedStatement.close();// 别忘记释放资源 connection.close(); } catch (ClassNotFoundException e) { e.printStackTrace(); } catch (SQLException e) { e.printStackTrace(); } } public static void main(String[] args) { JDBCTest1.jdbctest(); } }
5.数据库连接池
有了连接池之后,Dao层会去连接池中获得已经创建好的连接,不用再去新建连接,然后同数据库进行通讯。
public class C3P0Test { public static void testC3p0() throws PropertyVetoException, SQLException { //创建连接池对象 ComboPooledDataSource comboPooledDataSource=new ComboPooledDataSource(); //设置数据源 comboPooledDataSource.setDriverClass("com.mysql.cj.jdbc.Driver"); comboPooledDataSource.setJdbcUrl("jdbc:mysql://localhost:3306/datatest?useEncoding=true&characterEncoding=utf-8&serverTimezone=UTC"); comboPooledDataSource.setUser("root"); comboPooledDataSource.setPassword("123456"); //获取连接 Connection connection=comboPooledDataSource.getConnection(); //sql语句 String sql="update student set name=? where id=?"; PreparedStatement ps=connection.prepareStatement(sql); ps.setString(1,"liuchen"); ps.setInt(2,1); if(ps.executeUpdate()>0){ System.out.println("修改成功!"); } } public static void main(String[] args) throws PropertyVetoException, SQLException { C3P0Test.testC3p0(); } }
修改成功!
标签:HERE public one ati tco div result 创建 upd
原文地址:https://www.cnblogs.com/liu-chen/p/11909094.html