主要解决的是后一天的问题~容易漏掉最后一天~第一种方法,拼接String,第二种方法直接在最后一天加一天 第一: <if test="beginDate != null and beginDate != '' and endDate != null and endDate != ''"> and CREATETIME between #{beginDate} and CONCAT(#{endDate}, ' 23:59:59') </if> 第二: <if…
class DB { private static SqlConnection conn; public static SqlConnection getConn() { //conn = new SqlConnection("server=localhost;database=import;uid=sa;pwd=123");//第一种用户名密码方式 conn = new SqlConnection("Data Source= localhost;Integrated…