zoukankan      html  css  js  c++  java
  • 新闻发布项目——接口类(BaseDao)

    package bdqn.newsMange.Dao;
    /**
     * 公共类
     * @author Administrator
     *
     */
    import java.sql.*;
    import java.util.List;
    public class BaseDao {
    	Connection conn=null;
    	PreparedStatement ps=null;
    	ResultSet rs=null;
    	
    	public Connection getConnection() throws ClassNotFoundException, SQLException{
    		
    			Class.forName("com.microsoft.sqlserver.jdbc.SQLServerDriver");
    		if(conn==null){
    			conn=DriverManager.getConnection("jdbc:sqlserver://127.0.0.1:1433;databasename=newsDB;User=sa;Password=171268");
    		
    		}
    		return conn;
    	}
    	
    	//增删改
    	public int executeUpdate(String sql, List<Object> prams)
    			throws ClassNotFoundException, SQLException {
    		int rel = -1;
    
    		conn = getConnection();
    		/*if(conn.isClosed())
    		{
    			conn=null;
    			conn = getConnection();
    		}*/
    		ps = conn.prepareStatement(sql);
    		
    		if (prams != null) {
    			for (int i = 0; i < prams.size(); i++) {
    				ps.setObject(i + 1, prams.get(i));
    			}
    		}
    
    		rel = ps.executeUpdate();
    		return rel;
    	}
    	
    	//查询
    	public ResultSet executeQurey(String sql,List<Object>prams) throws ClassNotFoundException, SQLException{
    		conn=getConnection();
    		ps=conn.prepareStatement(sql);
    		if(prams!=null){
    			for (int i = 0; i < prams.size(); i++) {
    				ps.setObject(i+1, prams.get(i));
    			}
    		}
    		rs=ps.executeQuery();
    		return rs;
    	}
    	
    	//关闭资源
    	
    	public void closeAll(){
    		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(conn!=null){
    			try {
    				conn.close();
    				conn=null;
    			} catch (SQLException e) {
    				// TODO Auto-generated catch block
    				e.printStackTrace();
    			}
    		}
    	}
    }
    

  • 相关阅读:
    1、一条sql查询语句的执行过程
    go 内存分配
    GO Json
    gorm CRUD:读写数据
    go 基于切片的队列实现
    go的错误处理
    grpc
    sqlalchemy 判断字段是否存在
    定时函数
    用Python获取Linux资源信息的三种方法
  • 原文地址:https://www.cnblogs.com/a1111/p/12816559.html
Copyright © 2011-2022 走看看