C3P0操作Mysql数据库实战

  • 构建java project工程

  • 引入jar包如上,一个是连接Mysql,一个是c3p0
  • 编写配置文件c3p0-config.xml,特别注意:        <property name="jdbcUrl">
                <![CDATA[jdbc:mysql://localhost:3306/aggregate?useUnicode=true&characterEncoding=UTF-8]]>
<?xml version="1.0" encoding="UTF-8"?>
<c3p0-config>
    <!-- 默认配置,如果没有指定则使用这个配置 -->
    <default-config>
        <property name="driverClass">com.mysql.jdbc.Driver</property>
        <property name="jdbcUrl">
            <![CDATA[jdbc:mysql://localhost:3306/mobilegateway?useUnicode=true&characterEncoding=UTF-8]]>
        </property>
        <property name="user">root</property>
        <property name="password">root</property>
        <property name="acquireIncrement">3</property><!-- 如果池中数据连接不够时一次增长多少个 -->
        <property name="initialPoolSize">3</property>
        <property name="minPoolSize">3</property>
        <property name="maxPoolSize">20</property>
        <property name="maxStatements">0</property><!-- 一次向数据库最多可以发多少个Sql指令 -->
        <property name="idleConnectionTestPeriod">3600</property><!--每3600秒检查所有连接池中的空闲连接。Default: 0 -->
        <property name="maxIdleTime ">60</property> <!-- seconds --><!-- default: 0 --> 
        <property name="testConnectionOnCheckin">true</property>
        <property name="acquireRetryAttempts">10</property>
        <property name="acquireRetryDelay">1000</property><!--两次连接中间隔时间,单位毫秒。Default: 1000 --> 
        <property name="breakAfterAcquireFailure">false</property>
        <property name="checkoutTimeout">3000</property>
    </default-config> 
</c3p0-config> 
  • 编写工具类util
package com.data;


import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.ResultSetMetaData;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.Comparator;
import java.util.HashMap;
import java.util.Iterator;
import java.util.List;
import java.util.Map;

import javax.sql.DataSource;



import com.mchange.v2.c3p0.ComboPooledDataSource;

public class C3P0Util {

	private static DataSource ds = null;
	static {
		// 默认读取classpath下的c3p0-config.xml
		ds = new ComboPooledDataSource();
		// 连接abc数据库
		// ds = new ComboPooledDataSource("abc");

	}
   /**
	* 获取一个数据库连接
	* @return Connection
	*/
	public static Connection getConnection(){
		
		try {
			return ds.getConnection();
		} catch (SQLException e) {
			e.printStackTrace();

		}
		return null;
	}

public static int getCount(String sql)
   {
		Connection conn=null;
        Statement st=null;
        ResultSet rs=null;int i=0;
        try{
        	conn=getConnection();
        	st=conn.createStatement();
        	rs=st.executeQuery(sql);
        	if(rs.next()){
        		i=Integer.parseInt(rs.getString(1));
            }
        } catch (Exception e) {

			e.printStackTrace();
		}finally{
        	releaseResource(conn, st, rs);
        }
        return i;
   }

	public static boolean executeUpdate(String sql){
		Connection conn = null;
		Statement st = null;
		boolean ret = true;
		try {
			conn = getConnection();
			st = conn.createStatement();
			st.executeUpdate(sql);
			System.out.println(sql);
		} catch (Exception e) {

			e.printStackTrace();
			ret = false;
		} finally {
			releaseResource(conn, st, null);
		}
		return ret;
	}
	/**
	 * 可插入任意个数 value参数,但sql中的问号个数务必于value个数相同
	 * @param sql
	 * @param value
	 * @return
	 * @throws SQLException
	 * boolean
	 */
	public static boolean insertOrUpdateData(String sql,String...value){

		Connection conn = null;
		PreparedStatement prst = null;
		boolean ret = false;
		int num = 0;
		try {
			conn = getConnection();
			prst = conn.prepareStatement(sql);
			for(int i=0;i<value.length;i++){
				prst.setString(i+1, value[i]);
			}
			num = prst.executeUpdate();
			if(num>0){
				ret = true;
			}
		} catch (Exception e) {

			e.printStackTrace();
			ret = false;
		} finally {
			releaseResource(conn, prst, null);
		}
		return ret;
	}
   /**
    * 执行删除操作,并返回影响的行数
    * @param sql
    * @return
    * @throws SQLException
    */
   public static int executeDelete(String sql) throws SQLException{
	   Connection conn=null;
	   Statement st=null;
	   int result = 0;
	   try{
		   conn=getConnection();
		   st=conn.createStatement();
		   result = st.executeUpdate(sql);
		   System.out.println(sql);
	   } catch (Exception e) {

		   e.printStackTrace();
	   }finally{
		   releaseResource(conn, st, null);
	   }
	   return result;
   }
   
   /**
	 * JDBC获取数据,结果组织成HashMap形式,key为列名,value为数据
	 * 一条HashMap对应于查询到的一条数据
	 * @param sql
	 * @return
	 * @throws Exception
	 */
	public static List<HashMap<String, String>> getData(String sql)
	{
		Connection conn=null;
        Statement st=null;
        ResultSet rs=null;
        List<HashMap<String,String>> result = new ArrayList<HashMap<String,String>>();
        try{
        	conn=getConnection();
        	st=conn.createStatement();
        	rs=st.executeQuery(sql);
        	ResultSetMetaData rsmd = rs.getMetaData();
        	while(rs.next())
        	{
        		HashMap<String,String> map = new HashMap<String,String>();
        		for(int i=0;i<rsmd.getColumnCount();i++)
        		{
        			map.put(rsmd.getColumnLabel(i+1), rs.getString(i+1));
        		}
        		result.add(map);
        	}
        }catch (Exception e) {

			e.printStackTrace();
		}finally{
			releaseResource(conn, st, rs);
        }
        return result;
	}
	
	public static List<HashMap<String,String>> getScollData(String sql,int pageno,int pagesize)
	{
		Connection conn=null;
		PreparedStatement pstat=null;
        ResultSet rs=null;
        
        List<HashMap<String,String>> result = new ArrayList<HashMap<String,String>>();
        try {
       //   conn.prepareStatement(sql,游标类型,能否更新记录);
//             游标类型:
//              ResultSet.TYPE_FORWORD_ONLY:只进游标
//              ResultSet.TYPE_SCROLL_INSENSITIVE:可滚动。但是不受其他用户对数据库更改的影响。
//              ResultSet.TYPE_SCROLL_SENSITIVE:可滚动。当其他用户更改数据库时这个记录也会改变。
//             能否更新记录:
//              ResultSet.CONCUR_READ_ONLY,只读
//              ResultSet.CONCUR_UPDATABLE,可更新
          conn=getConnection();
          pstat = conn.prepareStatement(sql,ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
          //最大查询的记录条数
          pstat.setMaxRows(pageno*pagesize);
          rs = pstat.executeQuery();
          //将游标移动到第一条记录
          rs.first();
       //   游标移动到要输出的第一条记录
          rs.relative((pageno-1)*pagesize-1);
          ResultSetMetaData rsmd = rs.getMetaData();
          while(rs.next())
          {
        	  HashMap<String,String> map = new HashMap<String,String>();
        	  for(int i=0;i<rsmd.getColumnCount();i++)
        	  {
        		  map.put(rsmd.getColumnLabel(i+1), rs.getString(i+1));
        	  }
        	  result.add(map);
          }
        }
        catch (Exception e) {
          e.printStackTrace();
        }finally{
        	releaseResource(conn, pstat, rs);
        }
        return result;
	}
	/**
	 * 释放数据库资源
	 * @param Connection conn
	 * @param PreparedStatement pstmt
	 * @param ResultSet rs
	 */
	public static void releaseResource(Connection conn,PreparedStatement pstmt,ResultSet rs){
		try {//关闭顺序:rs,pstmt,conn
			if (rs != null)
				rs.close();
			if (pstmt != null)
				pstmt.close();
			if (conn != null)
				conn.close();
		} catch (Exception e) {

		}
	}
	/**
	 * 重载 释放数据库资源
	 * @param Connection conn
	 * @param Statement stmt
	 * @param ResultSet rs
	 */
	public static void releaseResource(Connection conn, Statement stmt,ResultSet rs) {
		try {//关闭顺序:rs,stmt,conn
			if (rs != null)
				rs.close();
			if (stmt != null)
				stmt.close();
			if (conn != null)
				conn.close();
		} catch (Exception e) {

		}
	}
	public static void main(String[] args) {
		long start = System.currentTimeMillis();
		List list = null;
		try {
			list = getData("select * from packagedata");
			System.out.println(getConnection());
			System.out.println(list);
		} catch (Exception e) {
			e.printStackTrace();
		}

	}
	
	/**
	 * 判断 map 是否包含 key
	 * @param map
	 * @param key
	 * @return 包含返回value ,不包含返回 null
	 */
	public static Object getMapElement(Map map,String key){
		if (map!=null) {
			for (Iterator ite = map.entrySet().iterator(); ite.hasNext();) {
				Map.Entry entry = (Map.Entry) ite.next();
				if ((key.trim()).equals(entry.getKey()))
					return entry.getValue();
			}
		}
		return null;
	}
}
  • 测试成功,结果如下:

  • 0
    点赞
  • 2
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值