Commit e28cf641 authored by 赵然's avatar 赵然

Merge branch 'master' of gitlab2.dui88.com:mabo/test-platform

parents a297e4ac feb6e61a
......@@ -66,7 +66,7 @@ public class MysqlConnPool {
* @throws SQLException
*/
public Map<String, Object> findSimpleResult(String sql, Object ...params) throws SQLException {
log.info("findSimpleResult开始~~~~~~~~~~~~~~~~~~~~~");
log.info("findSimpleResult开始~~~~~~~~~~~~~~~~~~~~~"+sql);
Map<String, Object> map = null;
try(Connection conn = bds.getConnection()){
......@@ -120,6 +120,7 @@ public class MysqlConnPool {
* @throws SQLException
*/
public boolean update(String sql, Object ...params) throws SQLException{
log.info("update开始~~~~~~~~~~~~~~~~~~~~~"+sql);
Connection conn=null;
boolean flag = false;
try{
......@@ -150,6 +151,8 @@ public class MysqlConnPool {
* @throws SQLException
*/
public List<Map<String, Object>> findModeResult(String sql, Object ...params) throws SQLException{
log.info("findModeResult开始~~~~~~~~~~~~~~~~~~~~~"+sql);
Connection conn=null;
List<Map<String, Object>> list = new ArrayList<Map<String, Object>>();
try{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment