jdbc链接基础

Posted pclover11

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了jdbc链接基础相关的知识,希望对你有一定的参考价值。

1 jdbc 链接两种方式,通过jdbc链接mysql数据库,url:jdbc:mysql://ip:端口[/database name]

通过什么驱动器,链接什么数据库,数据库的ip,连接端口,可以在url中加上连接的数据库名。

1)使用驱动器获取链接

        Driver driver = new com.mysql.jdbc.Driver();
        props.setProperty("user", "root");
        props.setProperty("password", "root");
        Connection conn = driver.connect(url, props);
        
        System.out.println(conn);
        conn.close();    

 

2) 使用驱动管理器获取链接

        Class.forName("com.mysql.jdbc.Driver");
        props.setProperty("user", "root");
        props.setProperty("password", "root");
        
        Connection conn = DriverManager.getConnection(url,props);
        System.out.println(conn);
        conn.close();

DriverManager 数据库驱动器管理类,用于管理所有注册的驱动器。

  1)registerDriver(driver)注册驱动器

  2)getConnection(url,properties) 获取链接

 

Interface Connection 常用方法

  1) Statement createStatement()  

  2)PreparedStatement prepareStatement(String sql)  

 

 

Interface Statement 用于执行静态SQL语句, 常用方法

  1)executeLargeUpdate(String sql) 

  2)executeQuery(String sql) 

 

Interface PreparedStatement 用于执行预编译SQL语句,

  1)int executeUpdate()  

  2)ResultSet executeQuery() 

 

Interface CallableStatement 用于执行存储过程的SQL语句

  1)ResultSet executeQuery() 

 

Interface ResultSet 查询结果

  1)boolean next()  //判断下一行是否为空

 

 

 

 


以上是关于jdbc链接基础的主要内容,如果未能解决你的问题,请参考以下文章

部分代码片段

jdbc链接基础

关于mysql驱动版本报错解决,Cause: com.mysql.jdbc.exceptions.jdbc4Unknown system variable ‘query_cache_size(代码片段

java基础——JDBC链接数据库的步骤

微信小程序代码片段

面试常用的代码片段