コード例 #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
ファイル: VipUserGroupDao.cs プロジェクト: lxh2014/gigade-net
 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);
     }
 }