冲刺第二天
昨天的任务是完成多条件的查询
今天的任务是继续进行查询任务
困难无法从前端从后端进行传值
package com.example.tuandui.utils;
import java.sql.Connection;
import java.sql.DriverManager;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.Statement;
public class DbOpenHelper {
final private static String CLS="com.mysql.jdbc.Driver";
//当前使用的虚拟局域网IP 26.155.34.209
final private static String URL="jdbc:mysql://26.155.34.209:3306/?useUnicode=true&characterEncoding=utf8";
//jdbc:mysql://localhost:3306/mydatabase?useUnicode=true&characterEncoding=utf8
final private static String USER="";
final private static String PASSWORD="";
public static Connection conn; //连接对象
public static Statement stmt; //命令集
public static PreparedStatement pstmt; //预编译的命令集
public static ResultSet rs; //结果集
//取得连接的方法
public static void getConnection(){
try{
Class.forName(CLS);
conn= DriverManager.getConnection(URL,USER,PASSWORD);
}catch (Exception ex){
ex.printStackTrace();
}
}
//关闭数据库操作对象
public static void closeAll(){
try{
if(rs!=null){
rs.close();
rs=null;
}
if(stmt!=null){
stmt.close();
stmt=null;
}
if(pstmt!=null){
pstmt.close();
pstmt=null;
}
if(conn!=null){
conn.close();
conn=null;
}
}catch (Exception ex){
ex.printStackTrace();
}
}
}