DB.java
上传用户:jishiqi_cj
上传日期:2022-08-08
资源大小:24765k
文件大小:1k
源码类别:

Java编程

开发平台:

Java

  1. package StudyBbs;
  2. import javax.sql.DataSource;
  3. import java.sql.Connection;
  4. import java.sql.Statement;
  5. import java.sql.ResultSet;
  6. import java.sql.SQLException;
  7. public class DB {
  8. Connection connect = null;
  9. ResultSet rs = null;
  10. public DB(DataSource dataSource) {
  11. try {
  12. connect = dataSource.getConnection();
  13. }
  14. catch(SQLException e) {
  15. e.printStackTrace();
  16. }
  17. }
  18. public ResultSet OpenSql(String sql) {
  19. try {
  20. Statement stmt = connect.createStatement(ResultSet.TYPE_SCROLL_INSENSITIVE,ResultSet.CONCUR_READ_ONLY);
  21. rs = stmt.executeQuery(sql);
  22. catch(SQLException ex) { 
  23. ex.printStackTrace();
  24. }
  25. return rs;
  26. }
  27. public int ExecSql(String sql) {
  28. int result = 0;
  29. try {
  30. Statement stmt = connect.createStatement();
  31. result = stmt.executeUpdate(sql);
  32. catch(SQLException ex) { 
  33. System.err.println(ex.getMessage());
  34. }
  35. return result;
  36. }
  37. public void close(){
  38. if(connect!=null){
  39. try{
  40. connect.close();
  41. connect = null;
  42. }catch(SQLException ex) { 
  43. System.err.println(ex.getMessage());
  44. }
  45. }
  46. }
  47. }