91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

java 使用策略模式操作JDBC數據庫

發布時間:2020-09-29 06:29:52 來源:腳本之家 閱讀:174 作者:woshisap 欄目:編程語言

java 使用策略模式操作JDBC數據庫

1:構造一個操作數據庫的工具類,可以獲得連接和釋放連接

public class DBUtil { 
  private static Connection conn = null; 
  static { //靜態初始塊 
      try { 
        Class.forName("com.mysql.jdbc.Driver"); 
        conn = DriverManager.getConnection("jdbc:mysql://127.0.0.1:3306/test", "root", "064319"); //初始化獲取連接 
      } catch (ClassNotFoundException e) { 
        e.printStackTrace(); 
      } catch (SQLException e) { 
        e.printStackTrace(); 
      } 
  } 
 
  /** 
   * 釋放連接 
   * @param rs 
   * @param psmt 
   * @param conn 
   * @throws SQLException 
   */ 
  public static void closeAll(ResultSet rs, PreparedStatement psmt, Connection conn) throws SQLException { 
     
    if(rs != null) { 
      rs.close(); 
    }  
     
    if(psmt != null) { 
      psmt.close(); 
    } 
     
    if(conn != null) { 
      conn.close(); 
    } 
     
  } 
   
  /** 
   * 獲取連接 
   * @return 
   */ 
  public static Connection getConnection() { 
    return conn; 
  } 
   
  /** 
   * 根據表的名字來獲得表的列信息 
   * @param tableName 
   */ 
  public static void getTableColumnInfoByTableName(String tableName) { 
    Connection conn = getConnection(); 
    ResultSet rs = null; 
    PreparedStatement psmt = null; 
    String sql = "select * from " + tableName; 
    try { 
      psmt = conn.prepareStatement(sql); 
      rs = psmt.executeQuery(); 
       
      ResultSetMetaData resultSetMetaData = rs.getMetaData(); 
      for(int i = 1; i<= resultSetMetaData.getColumnCount(); i++) { 
        System.out.println(resultSetMetaData.getColumnName(i)); 
      } 
       
    } catch (SQLException e) { 
      e.printStackTrace(); 
    } finally { 
      try { 
        closeAll(rs, psmt, conn); 
      } catch (SQLException e) { 
        e.printStackTrace(); 
      } 
    } 
  } 
   
  /** 
   * 根據表的名字來獲得表的信息 
   * @param tableName 
   */ 
  public static void getTableInfoByTableName(String tableName) { 
    Connection conn = getConnection(); 
    PreparedStatement psmt = null; 
    ResultSet rs = null; 
    String sql = "select * from " + tableName; 
    try { 
      psmt = conn.prepareStatement(sql); 
      rs = psmt.executeQuery(); 
       
      while(rs.next()) { 
        ResultSetMetaData resultSetMetaData = rs.getMetaData(); 
        for(int i = 1; i<= resultSetMetaData.getColumnCount(); i++) { 
          if(i < resultSetMetaData.getColumnCount()) { 
            System.out.print(rs.getObject(resultSetMetaData.getColumnName(i)) + ", "); 
          } else { 
            System.out.print(rs.getObject(resultSetMetaData.getColumnName(i))); 
          } 
        } 
        System.out.println(); 
      } 
     
    } catch (SQLException e) { 
      e.printStackTrace(); 
    } finally { 
      try { 
        closeAll(rs, psmt, conn); 
      } catch (SQLException e) { 
        e.printStackTrace(); 
      } 
    } 
  } 
} 

2:構造一個操作數據庫的BaseDao類

public class BaseDao { 
   
  /** 
   * 根據一些參數來保存相應的對象 
   * @param sql 要執行的sql語句 
   * @param params 為sql語句中相應的參數賦值 
   * @return 
   */ 
  protected boolean saveOrUpdate(String sql, Object[] params) { 
    Connection conn = null; 
    PreparedStatement psmt = null; 
    boolean flag = false; 
     
    conn = DBUtil.getConnection(); 
    if(conn != null) { 
      try { 
        psmt = conn.prepareStatement(sql); 
        for(int i = 1; i <= params.length; i++) { 
          psmt.setObject(i, params[i-1]); 
        } 
        if(psmt.executeUpdate() > 0) { 
          flag = true; 
        } 
         
      } catch (SQLException e) { 
        e.printStackTrace(); 
      } finally { 
        try { 
          DBUtil.closeAll(null, psmt, conn); 
        } catch (SQLException e) { 
          e.printStackTrace(); 
        } 
      } 
    }  
    return flag; 
  } 
   
  /** 
   * 根據一定的參數獲得某個具體的對象 
   * @param sql 要執行的sql語句 
   * @param params 為sql語句中相應的參數賦值 
   * @return 
   */ 
  public Object queryForObject(String sql, Object[] params, RowMapForObject rowMapForObject) { 
    Connection conn = null; 
    PreparedStatement psmt = null; 
     
    conn = DBUtil.getConnection(); 
    Object obj = null; 
    ResultSet rs = null; 
     
    if(conn != null) { 
      try { 
        psmt = conn.prepareStatement(sql); 
        if(params != null && params.length > 0) { 
          for(int i = 1; i <= params.length; i++) { 
             psmt.setObject(i, params[i - 1]); 
          } 
        } 
        rs = psmt.executeQuery(); 
        obj = rowMapForObject.rowMapForObject(rs); 
         
      } catch (SQLException e) { 
        e.printStackTrace(); 
      } finally { 
        try { 
          DBUtil.closeAll(null, psmt, conn); 
        } catch (SQLException e) { 
          e.printStackTrace(); 
        } 
      } 
    } 
     
    return obj; 
  } 
 
   
  /** 
   * 根據相應的參數獲得查詢的結果集 
   * @param sql 
   * @param params 
   * @return 
   */ 
  public List queryForList(String sql, Object[] params, RowMapForList rowMapForList) { 
    Connection conn = null; 
    PreparedStatement psmt = null; 
     
    conn = DBUtil.getConnection(); 
    List list = null; 
    ResultSet rs = null; 
     
    if(conn != null) { 
      try { 
        psmt = conn.prepareStatement(sql); 
        if(params != null && params.length > 0) { 
          for(int i = 1; i <= params.length; i++) { 
             psmt.setObject(i, params[i - 1]); 
          } 
        } 
        rs = psmt.executeQuery(sql); 
        list = new ArrayList(); 
        list = rowMapForList.rowMapForList(rs); 
         
      } catch (SQLException e) { 
        e.printStackTrace(); 
      } finally { 
        try { 
          DBUtil.closeAll(null, psmt, conn); 
        } catch (SQLException e) { 
          e.printStackTrace(); 
        } 
      } 
    } 
     
    return list; 
  } 
   
} 

3:新建一個StudentDao類,該類繼承自BaseDao,實現對Student的管理

public class StudentDao extends BaseDao { 
 
  /** 
   * 保存一個Student的信息 
   */ 
  public boolean saveStudent(Student student) { 
    String sql = "insert into t_student(name, age) values(?, ?)"; 
    Object[] params = new Object[]{student.getName(), student.getAge()}; 
    return super.saveOrUpdate(sql, params); 
  } 
   
  /** 
   * 根據id獲得一個Student的信息 
   * @param id 
   * @return 
   */ 
  public Student getStudentById(long id) { 
    String sql = "select * from t_student where id=?"; 
    Object[] params = new Object[]{id}; 
    return (Student)super.queryForObject(sql, params, new RowMapForObject() { 
       
      public Object rowMapForObject(ResultSet rs) { 
        Student student = null; 
         try { 
          if(rs != null && rs.next()) { 
             student = new Student(); 
             student.setAge(rs.getInt(Student.AGE)); 
             student.setId(rs.getLong(Student.ID)); 
             student.setName(rs.getString(Student.NAME)); 
           } 
        } catch (SQLException e) { 
          e.printStackTrace(); 
        } 
         return student; 
      } 
    }); 
  } 
 
  /** 
   * 獲得所有Student的信息 
   * @return 
   */ 
  public List getStudentAll() { 
    String sql = "select * from t_student"; 
    List list = super.queryForList(sql, null, new RowMapForList() { 
 
      @Override 
      public List rowMapForList(ResultSet rs) { 
        List list = null; 
        try { 
          if(rs != null) { 
            list = new ArrayList(); 
            while(rs.next()) { 
              Student student = new Student(); 
              student.setId(rs.getLong("id")); 
              student.setAge(rs.getInt("age")); 
              student.setName(rs.getString("name")); 
              list.add(student); 
            } 
          } 
        } catch(SQLException e) { 
          e.printStackTrace(); 
        } 
        return list; 
      } 
    }); 
     
    return list; 
  }   
} 

如有疑問請留言或者到本站社區交流討論,大家共同進步,感謝閱讀,希望能幫助到大家,謝謝大家對本站的支持!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

襄樊市| 思南县| 东阳市| 昆山市| 屏南县| 准格尔旗| 读书| 叶城县| 淮北市| 凯里市| 辽源市| 阳信县| 朝阳市| 周口市| 察雅县| 太仆寺旗| 米泉市| 牙克石市| 许昌市| 黄冈市| 大渡口区| 丹棱县| 商洛市| 中卫市| 武川县| 新乐市| 江安县| 临泉县| 葫芦岛市| 台东县| 禄劝| 南澳县| 友谊县| 门头沟区| 开平市| 珲春市| 乌海市| 大足县| 安新县| 肥东县| 洛浦县|