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

Java编程

开发平台:

Java

  1. package classmate;
  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 DBUser {
  8. DataSource dataSource;
  9. public DBUser(DataSource dataSource) {
  10. this.dataSource = dataSource;
  11. }
  12. public boolean checkUser(String name,String psw) throws Exception{
  13.         Connection connect = null;
  14. String strSql;
  15. ResultSet rs;
  16. boolean result=false;
  17.         strSql = "select * from classuser where username='"
  18. + name + "' and password='" + psw + "'";
  19. try {
  20. connect = dataSource.getConnection();
  21. Statement stmt = connect.createStatement();
  22. rs = stmt.executeQuery(strSql);
  23. if ( rs.next()) {
  24. result=true;
  25. }
  26. catch(SQLException ex) { 
  27. ex.printStackTrace();
  28. }
  29. finally{
  30. if(connect!=null)
  31. connect.close();
  32. }
  33. return result;
  34. }
  35. public  int Insert(String username,String password) throws Exception{
  36.         Connection connect = null;
  37.        String strSql;
  38.     int result = 0;
  39.       strSql = "insert into classuser values('" 
  40.          + username  +"','"
  41. + password  +"')";
  42. try {
  43. connect = dataSource.getConnection();
  44. Statement stmt = connect.createStatement();
  45. result = stmt.executeUpdate(strSql);
  46. catch(SQLException ex) { 
  47. System.err.println(ex.getMessage());
  48. }
  49. finally{
  50. if(connect!=null)
  51. connect.close();
  52. }
  53. return  result;
  54. }
  55. }