BaseDao


import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;

public class BaseDao {
    private final static String DRIVERNAME="oracle.jdbc.driver.OracleDriver";
    private final static String URL="jdbc:oracle:thin:@127.0.0.1:1521:orcl";
    private final static String UID="scott";
    private final static String PWD="tiger";
    protected Connection connection;
    protected PreparedStatement ps;
    protected ResultSet rs;
    static{
        try {
            Class.forName(DRIVERNAME);
        } catch (ClassNotFoundException e) {
            System.out.println("加载驱动失败:"+e.getMessage());
            System.out.println("加载驱动失败:"+URL);
        }
    }
   
   
    public Connection getConnection(){
        try {
            connection=DriverManager.getConnection(URL,UID,PWD);
            System.out.println(" 数据库连接成功");
        } catch (SQLException e) {
            System.out.println("建立连接失败:"+e.getMessage());
            System.out.println("建立连接失败:"+URL);
        }
        return connection;
    }
   
   
    public int update(String sql,String args[]){
        int i=-1;
        Connection c=getConnection();
        try {
            ps=c.prepareStatement(sql);
            if(null==args||0==args.length){
               
            }else{
                for(int j = 0;j< args.length;j++){
                    ps.setString(j+1, args[j]);
                }
            }
            System.out.println("执行了");
            i=ps.executeUpdate();
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            System.out.println("执行语句失败:"+sql);
            System.out.println("执行语句失败"+e.getMessage());
        }finally{
            closeAll(connection,ps,rs);
        }
       
        return i;
    }
   
   
    protected void closeAll(Connection connection,PreparedStatement ps,ResultSet rs){
        if(rs!=null){
            try {
                rs.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        if(ps!=null){
            try {
                ps.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
        if(connection!=null){
            try {
                connection.close();
            } catch (SQLException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    }
   
   
    public boolean query(String sql, String[] args) {
        Connection c=getConnection();
        if(c==null){
            return false;
        }
        try {
            ps=c.prepareStatement(sql);
           
            if(null==args||0==args.length){
               
            }else{
                for(int j = 0;j< args.length;j++){
                    ps.setString(j+1, args[j]);
                }
            }
            rs=ps.executeQuery();
            return true;
        } catch (SQLException e) {
            // TODO Auto-generated catch block
            System.out.println("执行语句失败:"+sql);
            System.out.println("执行语句失败"+e.getMessage());
        }
        return false;
    }

}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值