• Java c3po


    1、准备通用类

    (引用:c3p0-0.9.1.2.jar)

    package nankang.test;
    
    import java.sql.Connection;
    
    import com.mchange.v2.c3p0.ComboPooledDataSource;
    
    public class ConnectionFactory {
    
        private static ComboPooledDataSource ds = null;
    
        static {
            try {
                String driver = "oracle.jdbc.driver.OracleDriver";
                String url = "jdbc:oracle:thin:@127.0.0.1:1521:orcl";
                String user = "phonesurvey";
                String password = "world";
    
                ds = new ComboPooledDataSource();
                ds.setDriverClass(driver);
                ds.setJdbcUrl(url);
                ds.setUser(user);
                ds.setPassword(password);
    
                ds.setMaxPoolSize(200);
                ds.setMinPoolSize(20);
    
            } catch (Exception e) {
                e.printStackTrace();
            }
        }
        
        public static synchronized Connection getConnection(){
            Connection conn = null;
            try{
                conn = ds.getConnection();
            }catch(Exception e){
                e.printStackTrace();
            }
            return conn;
        }
        
        
    }

    2、调用

    package nankang.test;
    
    import java.sql.Connection;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    
    public class Main {
    
        /**
         * @param args
         */
        public static void main(String[] args) {
    
            Connection conn = null;
            PreparedStatement pstm = null;
            ResultSet rs = null;
    
            try {
                conn = ConnectionFactory.getConnection();
    
                String sql = "select * from Agent";
                pstm = conn.prepareStatement(sql);
                rs = pstm.executeQuery();
                while (rs.next()) {
                    String agentId = rs.getString("AgentId");
    
                    System.out.println(agentId);
                }
    
                System.out.println("成功");
            } catch (Exception e) {
                System.out.println(String.format("失败,%s", e.getMessage()));
            } finally {
                if (rs != null) {
                    try {
                        rs.close();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
                if (pstm != null) {
                    try {
                        pstm.close();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
                if (conn != null) {
                    try {
                        conn.close();
                    } catch (Exception e) {
                        e.printStackTrace();
                    }
                }
            }
        }
    
    }
  • 相关阅读:
    ps-- 制作磨砂背景
    ps -- 证件照
    抠图--薄,透
    60后发送短信的方法
    小项目 -- 验证码.js
    小项目
    小项目 -- phone.js
    基于GDAL提取地物,并生成png,最后加载到网页上(二)
    根据范围获取影像瓦片,并生成GeoTIFF 文件《一》
    Ubuntu 10.4 +NVIDIA GTX 1070 显卡驱动更新
  • 原文地址:https://www.cnblogs.com/sshoub/p/4085594.html
Copyright © 2020-2023  润新知