亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

mysql怎么使用連接池

小新
128
2021-03-22 09:47:19
欄目: 云計算

mysql怎么使用連接池

mysql使用連接池的示例:

1.手動配置連接池。

/**

     * 手動設置連接池

     */

    public void demo1(){

        // 獲得連接:

        Connection conn = null;

        PreparedStatement pstmt = null;

        ResultSet rs = null;

        try{

            // 創建連接池:

            ComboPooledDataSource dataSource = new ComboPooledDataSource();

            // 設置連接池的參數:

            dataSource.setDriverClass("com.mysql.jdbc.Driver");

            dataSource.setJdbcUrl("jdbc:mysql:///jdbctest");

            dataSource.setUser("root");

            dataSource.setPassword("abc");

            dataSource.setMaxPoolSize(20);

            dataSource.setInitialPoolSize(3);

            

            // 獲得連接:

            conn = dataSource.getConnection();

            // 編寫Sql:

            String sql = "select * from user";

            // 預編譯SQL:

            pstmt = conn.prepareStatement(sql);

            // 設置參數

            // 執行SQL:

            rs = pstmt.executeQuery();

            while(rs.next()){

                System.out.println(rs.getInt("uid")+"   "+rs.getString("username")+"   "+rs.getString("password")+"   "+rs.getString("name"));

            }

        }catch(Exception e){

            e.printStackTrace();

        }finally{

            JDBCUtils.release(rs, pstmt, conn);

        }

    }

2.使用配置文件配置連接池,配置文件xml如下:

<?xml version="1.0" encoding="UTF-8"?>

<c3p0-config>

  <default-config>

    <property name="driverClass">com.mysql.jdbc.Driver</property>

    <property name="jdbcUrl">jdbc:mysql:///jdbctest</property>

    <property name="user">root</property>

    <property name="password">abc</property>

    <property name="initialPoolSize">5</property>

    <property name="maxPoolSize">20</property>

  </default-config>

  

</c3p0-config>

3.使用配置文件。

/**

     * 使用配置文件的方式

     */

    public void demo2(){

        Connection conn = null;

        PreparedStatement pstmt = null;

        ResultSet rs = null;

        try{

            /*// 獲得連接:

            ComboPooledDataSource dataSource = new ComboPooledDataSource();*/

            // 獲得連接:

            // conn = dataSource.getConnection();

            conn = JDBCUtils2.getConnection();

            // 編寫Sql:

            String sql = "select * from user";

            // 預編譯SQL:

            pstmt = conn.prepareStatement(sql);

            // 設置參數

            // 執行SQL:

            rs = pstmt.executeQuery();

            while(rs.next()){

                System.out.println(rs.getInt("uid")+"   "+rs.getString("username")+"   "+rs.getString("password")+"   "+rs.getString("name"));

            }

        }catch(Exception e){

            e.printStackTrace();

        }finally{

            JDBCUtils2.release(rs, pstmt, conn);

        }

    }


0
伊春市| 彭泽县| 东兴市| 兴隆县| 喀喇沁旗| 曲沃县| 东丽区| 中超| 文山县| 长岭县| 永平县| 安图县| 孝感市| 彭阳县| 繁昌县| 尤溪县| 蕉岭县| 济源市| 武冈市| 治县。| 荆州市| 诸城市| 上饶市| 周口市| 抚松县| 游戏| 合江县| 固镇县| 黑山县| 德清县| 南投县| 洞口县| 满城县| 揭阳市| 南汇区| 盐源县| 泰州市| 洪江市| 岳普湖县| 景宁| 兰溪市|