예제 #1
0
 public bool ExecSqls(ArrayList arrList)
 {
     try
     {
         MySqlDao myDao = new MySqlDao(connStr);
         return myDao.ExcuteSqlsThrowException(arrList);
     }
     catch (Exception ex)
     {
         throw new Exception("OrderReturnStatusDao-->ExecSqls-->" + arrList + ex.Message, ex);
     }
 }
예제 #2
0
 public bool execSql(ArrayList arrayList)
 {
     try
     {
         MySqlDao myDao = new MySqlDao(connStr);
         return myDao.ExcuteSqlsThrowException(arrayList);
     }
     catch (Exception ex)
     {
         throw new Exception(" EmsDao-->execSql--> " + arrayList + ex.Message, ex);
     }
 }