diff --git a/.vs/CNAS_DBSync/v15/.suo b/.vs/CNAS_DBSync/v15/.suo index 18dce0d..e542b34 100644 Binary files a/.vs/CNAS_DBSync/v15/.suo and b/.vs/CNAS_DBSync/v15/.suo differ diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide index 92bd954..e07fb90 100644 Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide differ diff --git a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal index 8506f2b..2775a8d 100644 Binary files a/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal and b/.vs/CNAS_DBSync/v15/Server/sqlite3/storage.ide-wal differ diff --git a/CNAS_DBSync/CNAS_DBSync.csproj b/CNAS_DBSync/CNAS_DBSync.csproj index 012f8fc..269fc0b 100644 --- a/CNAS_DBSync/CNAS_DBSync.csproj +++ b/CNAS_DBSync/CNAS_DBSync.csproj @@ -70,6 +70,7 @@ ActivationForm.cs + Form @@ -242,6 +243,10 @@ {cb9b6d92-3cc4-46c6-92e8-a6fd0ad48041} CnasSynchronusClient + + {F4EC1B78-EFF4-4D04-AE79-631D220187AF} + CnasSynchronusDAL + {0c3243f5-729e-409c-b406-c6de56e632e0} CnasSynchrousModel diff --git a/CNAS_DBSync/SelectTableType.cs b/CNAS_DBSync/SelectTableType.cs new file mode 100644 index 0000000..cfd8fc9 --- /dev/null +++ b/CNAS_DBSync/SelectTableType.cs @@ -0,0 +1,152 @@ +using CnasSynchronousCommon; +using CnasSynchronusDAL; +using CnasSynchrousModel; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Text; +using System.Threading.Tasks; + +namespace CNAS_DBSync +{ + public class SelectTableType + { + private static string connectionStr = ""; + public static DataTable MySqlsec(string strTableName) + { + MySQLDAL mysql = new MySQLDAL(); + DataTable tb = mysql.GetTableTypeAndLenth(strTableName); + return tb; + } + + public static DataTable Sqlserversec(string strTableName, SyncInstrumentItemInfo t) + { + + DataTable dt = new DataTable(); + try + { + if (t.SyncInstrumentDSInfo.Host != "") + connectionStr = $"Data Source = {t.SyncInstrumentDSInfo.Host}; Initial Catalog = {t.SyncInstrumentDSInfo.ServerName}; User Id = {t.SyncInstrumentDSInfo.UserId}; Password = {t.SyncInstrumentDSInfo.UserPwd};"; + + string sql = string.Format(@"SELECT + c.name AS ColumnName, + t.name AS DataType, + c.max_length AS MaxLength, + c.is_nullable AS IsNullable, + c.default_object_id AS DefaultObjectId, + ep.value AS remark +FROM + sys.columns c +JOIN + sys.types t ON c.user_type_id = t.user_type_id + LEFT JOIN + sys.extended_properties ep + ON + c.object_id = ep.major_id + AND c.column_id = ep.minor_id + AND ep.name = 'MS_Description' -- 备注的属性名称 +WHERE + c.object_id = OBJECT_ID('{0}'); ", strTableName); //查询字符串 + dt = GetDataTable(sql, new SqlParameter[] { }); + + } + catch (Exception ex) + { + //发生异常,写入日志 + AppLog.Error(ex.Message); + } + return dt; + + } + + /// + /// 查询操作 + /// + /// + /// + public static DataTable GetDataTable(string sql, params SqlParameter[] sp) + { + using (SqlConnection conn = new SqlConnection(connectionStr)) + { + conn.Open(); + using (SqlDataAdapter sda = new SqlDataAdapter(sql, conn)) + { + sda.SelectCommand.Parameters.AddRange(sp); + DataTable dt = new DataTable(); + sda.Fill(dt); + return dt; + } + } + } + + + public static DataTable PostgreSql(string strTableName) + { + + DataTable dt = new DataTable(); + string strSql = string.Format(@"SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as 非空, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = '{0}'; ", strTableName); + try + { + dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; + } + catch (Exception ex) + { + AppLog.Error(ex.Message); + } + return dt; + + + } + + public static DataTable DmSql(string strTableName) + { + + DataTable dt = new DataTable(); + string strSql = string.Format(@"SELECT + a.COLUMN_NAME AS ColumnName, + b.COMMENTS AS remark, + a.DATA_TYPE || CASE + WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')' + WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')' + ELSE '' + END AS DataType +FROM + ALL_TAB_COLUMNS a +LEFT JOIN + ALL_COL_COMMENTS b + ON a.OWNER = b.OWNER + AND a.TABLE_NAME = b.TABLE_NAME + AND a.COLUMN_NAME = b.COLUMN_NAME +WHERE + a.TABLE_NAME = '{0}' + +ORDER BY + a.COLUMN_ID;", strTableName); + try + { + dt = DamengHelper.ExecuteDataSet(strSql).Tables[0]; + } + catch (Exception ex) + { + AppLog.Error(ex.Message); + } + return dt; + + + } + } +} diff --git a/CNAS_DBSync/frmSyncParams.cs b/CNAS_DBSync/frmSyncParams.cs index ddc0532..265acc9 100644 --- a/CNAS_DBSync/frmSyncParams.cs +++ b/CNAS_DBSync/frmSyncParams.cs @@ -294,8 +294,35 @@ namespace CNAS_DBSync InstrumentData instrumentData = InstrumentDataFact.CreateInstrumentDataSource(currentSyncItem.SyncInstrumentDSInfo, new object[] { "", "", "" }); //dictInstruTables = instrumentData.GetInstrumentData(); //dictInstruTables = - string strTableName_Instru = cbxInstrument.Text.ToString(); - DataTable dtTableType = CnasDataOperationFact.CnasDataOperation().GetCNASTableTypeLenth(strTableName_Instru, currentSyncItem.SyncTargetDBInfo); + DataTable dtTableType = null; + string strTableName_Instru = cbxInstrument.Text.ToString(); + + switch (currentSyncItem.SyncInstrumentDSInfo.InstrumentDataSourceType) + { + case DataSourceType.MySQL: + dtTableType = SelectTableType.MySqlsec(strTableName_Instru); + + break; + case DataSourceType.Dm: + dtTableType = SelectTableType.DmSql(strTableName_Instru); + break; + case DataSourceType.Oracle: + + break; + case DataSourceType.PostgreSQL: + dtTableType = SelectTableType.PostgreSql(strTableName_Instru); + break; + case DataSourceType.SQL: + dtTableType = SelectTableType.Sqlserversec(strTableName_Instru, currentSyncItem); + break; + case DataSourceType.SQLLite: + default: + + break; + } + + + //dtTableType = CnasDataOperationFact.CnasDataOperation().GetCNASTableTypeLenth(strTableName_Instru, currentSyncItem.SyncTargetDBInfo); //string strTableName_Instru = cbxInstrument.Text.ToString(); diff --git a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs index 9f21e32..3c80fbb 100644 --- a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs +++ b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs @@ -428,7 +428,7 @@ namespace CnasSynchronusDAL { string strTableName = dr[0].ToString(); AppLog.Error("===---===" + strTableName + "GetTableStruct(strTableName, )"); - dictTables.Add(strTableName.ToUpper(), GetTableStruct(strTableName, "", "")); + dictTables.Add(strTableName, GetTableStruct(strTableName, "", "")); } } diff --git a/CnasSynchronusDAL/DAL/SQLDAL.cs b/CnasSynchronusDAL/DAL/SQLDAL.cs index 93b7a7f..c4f1d0d 100644 --- a/CnasSynchronusDAL/DAL/SQLDAL.cs +++ b/CnasSynchronusDAL/DAL/SQLDAL.cs @@ -181,7 +181,7 @@ namespace CnasSynchronusDAL /// 获取所有数据字段,然后记录其中是否存在需要特殊处理的字段 /// /// - private static Dictionary GetSpecialOperaField(string strTableName) + public static Dictionary GetSpecialOperaField(string strTableName) { Dictionary DictFiled = new Dictionary(); DataTable dt = new DataTable(); diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe index 08bcbd2..b72b81d 100644 Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll index 4dbf398..56ed73b 100644 Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ diff --git a/dll/ErrorLog/20250219.txt b/dll/ErrorLog/20250219.txt new file mode 100644 index 0000000..6828692 --- /dev/null +++ b/dll/ErrorLog/20250219.txt @@ -0,0 +1,2593 @@ +¼ʱ䣺2025-02-19 09:27:08,234 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:27:08,271 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:27:10,689 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:27:10,697 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:27:12,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:27:12,641 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===abilitysupervisionrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,320 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,326 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===acceptanceconsumablematerialsGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,327 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===acceptanceconsumablematerialsSELECT * FROM acceptanceconsumablematerials Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,328 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM acceptanceconsumablematerials Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===acceptanceconsumablematerialsMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===accreditpeopleevaluateGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,330 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===accreditpeopleevaluateSELECT * FROM accreditpeopleevaluate Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM accreditpeopleevaluate Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===accreditpeopleevaluateMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===apparatusscrapdisableapplyforformGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,333 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===apparatusscrapdisableapplyforformSELECT * FROM apparatusscrapdisableapplyforform Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM apparatusscrapdisableapplyforform Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===apparatusscrapdisableapplyforformMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualificationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,336 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualificationSELECT * FROM authorizedqualification Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,337 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualificationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===authorizedqualification_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,339 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===authorizedqualification_subSELECT * FROM authorizedqualification_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,340 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM authorizedqualification_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===authorizedqualification_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===basicrequirementsGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===basicrequirementsSELECT * FROM basicrequirements Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,342 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM basicrequirements Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===basicrequirementsMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_qualityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_qualitySELECT * FROM boiler_quality Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,345 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boiler_quality_copy1GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boiler_quality_copy1SELECT * FROM boiler_quality_copy1 Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,348 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,349 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boiler_quality_copy1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boiler_quality_copy1MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===boilerquanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===boilerquanSELECT * FROM boilerquan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,351 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM boilerquan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===boilerquanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===calibrationcertificateGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===calibrationcertificateSELECT * FROM calibrationcertificate Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM calibrationcertificate Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===calibrationcertificateMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesbGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesbSELECT * FROM chdmdmesb Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,358 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesbMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===chdmdmesb_copy1GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,361 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===chdmdmesb_copy1SELECT * FROM chdmdmesb_copy1 Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM chdmdmesb_copy1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===chdmdmesb_copy1MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.report_insulatingoilGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,364 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.report_insulatingoilSELECT * FROM cnas.report_insulatingoil Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,365 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.report_insulatingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,379 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist +¼ʱ䣺2025-02-19 09:28:03,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.report_insulatingoil' doesn't exist +¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.report_insulatingoil' doesn't exist +¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas.reportmainGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,391 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas.reportmainSELECT * FROM cnas.reportmain Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas.reportmain Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,400 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist +¼ʱ䣺2025-02-19 09:28:03,406 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Table 'cnas.reportmain' doesn't exist +¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:Table 'cnas.reportmain' doesn't exist +¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===cnas_analysis_dataGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===cnas_analysis_dataSELECT * FROM cnas_analysis_data Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,412 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,416 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM cnas_analysis_data Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===cnas_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalmonthcheckGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalmonthcheckSELECT * FROM coalmonthcheck Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalmonthcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalmonthcheckMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplefirstrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplefirstrecordSELECT * FROM coalsamplefirstrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplefirstrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplefirstrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalsamplejudgmentstandardGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalsamplejudgmentstandardSELECT * FROM coalsamplejudgmentstandard Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalsamplejudgmentstandard Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalsamplejudgmentstandardMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coaltransporterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,431 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coaltransporterSELECT * FROM coaltransporter Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coaltransporter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coaltransporterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalvendorGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,434 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalvendorSELECT * FROM coalvendor Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalvendor Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalvendorMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_resultGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_resultSELECT * FROM coalweight_analysis_result Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_resultMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===coalweight_analysis_result_yuhuaGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===coalweight_analysis_result_yuhuaSELECT * FROM coalweight_analysis_result_yuhua Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM coalweight_analysis_result_yuhua Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===coalweight_analysis_result_yuhuaMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===compactapprovalrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===compactapprovalrecordSELECT * FROM compactapprovalrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,447 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM compactapprovalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===compactapprovalrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complaindisposerecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complaindisposerecordSELECT * FROM complaindisposerecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complaindisposerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complaindisposerecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===complainthandlingreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===complainthandlingreportSELECT * FROM complainthandlingreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,455 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM complainthandlingreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===complainthandlingreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===consumablematerialsregistrationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===consumablematerialsregistrationSELECT * FROM consumablematerialsregistration Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,456 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM consumablematerialsregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===consumablematerialsregistrationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===correctiveorpreventivemeasuresGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,459 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===correctiveorpreventivemeasuresSELECT * FROM correctiveorpreventivemeasures Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM correctiveorpreventivemeasures Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===correctiveorpreventivemeasuresMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customerinformationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,463 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customerinformationSELECT * FROM customerinformation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customerinformation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customerinformationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===customersurveyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===customersurveySELECT * FROM customersurvey Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM customersurvey Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===customersurveyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===deleteinfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,471 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===deleteinfoSELECT * FROM deleteinfo Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,472 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM deleteinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===deleteinfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===dictGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,476 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===dictSELECT * FROM dict Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM dict Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===dictMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,481 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===documentrecorddestructionrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===documentrecorddestructionrecordSELECT * FROM documentrecorddestructionrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,482 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM documentrecorddestructionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===documentrecorddestructionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===editreportrerecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,486 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===editreportrerecordSELECT * FROM editreportrerecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM editreportrerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===editreportrerecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===employeerecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,490 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===employeerecordSELECT * FROM employeerecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,491 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM employeerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===employeerecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===environmentalrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,494 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===environmentalrecordSELECT * FROM environmentalrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,495 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM environmentalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===environmentalrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equimentcheckGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equimentcheckSELECT * FROM equimentcheck Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equimentcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equimentcheckMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===equipmentrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===equipmentrecordSELECT * FROM equipmentrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM equipmentrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===equipmentrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===examinemehotdcheckGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===examinemehotdcheckSELECT * FROM examinemehotdcheck Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM examinemehotdcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===examinemehotdcheckMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===expiredstandardsampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===expiredstandardsampleSELECT * FROM expiredstandardsample Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,509 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM expiredstandardsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===expiredstandardsampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfilecontrollistGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfilecontrollistSELECT * FROM externalfilecontrollist Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,513 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfilecontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,516 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalfileoncontrollistGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalfileoncontrollistSELECT * FROM externalfileoncontrollist Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalfileoncontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpowerGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpowerSELECT * FROM externalpower Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,521 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpowerMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalpower_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalpower_subSELECT * FROM externalpower_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,524 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalpower_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalpower_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalqualitycontrolscheduleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,527 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalqualitycontrolscheduleSELECT * FROM externalqualitycontrolschedule Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,528 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalqualitycontrolschedule Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalqualitycontrolscheduleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===externalserviceprovisionGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===externalserviceprovisionSELECT * FROM externalserviceprovision Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM externalserviceprovision Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===externalserviceprovisionMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitiesenvironmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,533 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitiesenvironmentSELECT * FROM facilitiesenvironment Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,534 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitiesenvironment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitiesenvironmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckplanSELECT * FROM facilitycheckplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,537 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitycheckrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,540 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitycheckrecordSELECT * FROM facilitycheckrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,541 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitycheckrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitycheckrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityenableapplyGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityenableapplySELECT * FROM facilityenableapply Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,545 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityenableapply Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityenableapplyMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityflawdisposerecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,547 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityflawdisposerecordSELECT * FROM facilityflawdisposerecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityflawdisposerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityflawdisposerecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitymaintainrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitymaintainrecordSELECT * FROM facilitymaintainrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitymaintainrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitymaintainrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilitysmaintainplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilitysmaintainplanSELECT * FROM facilitysmaintainplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilitysmaintainplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilitysmaintainplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===facilityuserecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===facilityuserecordSELECT * FROM facilityuserecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM facilityuserecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===facilityuserecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileborrowingGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,561 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileborrowingSELECT * FROM fileborrowing Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileborrowing Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileborrowingMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fileeditapplicationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fileeditapplicationSELECT * FROM fileeditapplication Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,565 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fileeditapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fileeditapplicationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===filereviewrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,568 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===filereviewrecordSELECT * FROM filereviewrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM filereviewrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===filereviewrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_assayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_assaySELECT * FROM fl_assay Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_assay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_assayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receive_batchsGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receive_batchsSELECT * FROM fl_receive_batchs Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receive_batchs Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receive_batchsMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_receivesGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_receivesSELECT * FROM fl_receives Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,579 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_receives Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_receivesMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,582 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sampleSELECT * FROM fl_sample Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fl_sample_makeGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fl_sample_makeSELECT * FROM fl_sample_make Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fl_sample_make Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fl_sample_makeMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===foreignpersonapprovalGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,589 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===foreignpersonapprovalSELECT * FROM foreignpersonapproval Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM foreignpersonapproval Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===foreignpersonapprovalMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_coalassaycheckGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_coalassaycheckSELECT * FROM fpm_coalassaycheck Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_coalassaycheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_coalassaycheckMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalassaypurGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalassaypurSELECT * FROM fpm_tcoalassaypur Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,598 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalassaypur Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalassaypurMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchSELECT * FROM fpm_tcoalbatch Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,607 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalbatchassayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalbatchassaySELECT * FROM fpm_tcoalbatchassay Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalbatchassay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalsampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalsampleSELECT * FROM fpm_tcoalsample Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,615 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,616 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fpm_tcoalweightGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fpm_tcoalweightSELECT * FROM fpm_tcoalweight Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,620 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,621 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fpm_tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fpm_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===fuelsendquanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===fuelsendquanSELECT * FROM fuelsendquan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,624 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM fuelsendquan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===fuelsendquanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===globalparamGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,627 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===globalparamSELECT * FROM globalparam Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM globalparam Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM globalparam Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM globalparam Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===globalparamMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===industrialverification_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===industrialverification_subSELECT * FROM industrialverification_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM industrialverification_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===industrialverification_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationplanSELECT * FROM interimverificationplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,634 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecordsGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,637 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecordsSELECT * FROM interimverificationrecords Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecordsMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===interimverificationrecords_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===interimverificationrecords_subSELECT * FROM interimverificationrecords_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM interimverificationrecords_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===interimverificationrecords_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,644 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalashSELECT * FROM internalash Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,645 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcalorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,648 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcalorificSELECT * FROM internalcalorific Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,649 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcalorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcalorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalcarbonGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalcarbonSELECT * FROM internalcarbon Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalcarbon Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalcarbonMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfilecontrollistGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfilecontrollistSELECT * FROM internalfilecontrollist Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfilecontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfilecontrollistMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalfileoncontrollistGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalfileoncontrollistSELECT * FROM internalfileoncontrollist Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalfileoncontrollist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalfileoncontrollistMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalhydrogenGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalhydrogenSELECT * FROM internalhydrogen Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,670 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalhydrogen Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalhydrogenMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalpowerGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalpowerSELECT * FROM internalpower Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,671 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalpower Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalpower Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalpower Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalpowerMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalqualitycontrolGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalqualitycontrolSELECT * FROM internalqualitycontrol Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalqualitycontrol Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalqualitycontrolMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreportsulfurGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,678 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreportsulfurSELECT * FROM internalreportsulfur Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreportsulfur Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreportsulfurMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewcheckGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewcheckSELECT * FROM internalreviewcheck Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewcheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewcheckMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewconferenceregistrationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewconferenceregistrationSELECT * FROM internalreviewconferenceregistration Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,686 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewconferenceregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewconferenceregistrationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,689 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementationSELECT * FROM internalreviewimplementation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewimplementation_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,692 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewimplementation_subSELECT * FROM internalreviewimplementation_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewimplementation_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewimplementation_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,696 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewreportSELECT * FROM internalreviewreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,700 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplanSELECT * FROM internalreviewyearplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,701 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalreviewyearplan_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,703 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalreviewyearplan_subSELECT * FROM internalreviewyearplan_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalreviewyearplan_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalreviewyearplan_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internaltestingcommissioningGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internaltestingcommissioningSELECT * FROM internaltestingcommissioning Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,707 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,710 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internaltestingcommissioning Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internaltestingcommissioningMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===internalvolatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===internalvolatileSELECT * FROM internalvolatile Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,711 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM internalvolatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===internalvolatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labbasicinfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labbasicinfoSELECT * FROM labbasicinfo Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,715 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labbasicinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labbasicinfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labfactoryinfoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labfactoryinfoSELECT * FROM labfactoryinfo Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,719 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,720 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,722 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labfactoryinfo Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labfactoryinfoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreportSELECT * FROM laboratoryqualityreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,723 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryqualityreport_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,725 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryqualityreport_subSELECT * FROM laboratoryqualityreport_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,726 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryqualityreport_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryqualityreport_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===laboratoryreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,728 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===laboratoryreportSELECT * FROM laboratoryreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,731 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM laboratoryreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===laboratoryreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===labtestcapabilityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===labtestcapabilitySELECT * FROM labtestcapability Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,732 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM labtestcapability Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===labtestcapabilityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===macaddressGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,736 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===macaddressSELECT * FROM macaddress Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,737 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM macaddress Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM macaddress Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM macaddress Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===macaddressMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===makereport_sample_infoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===makereport_sample_infoSELECT * FROM makereport_sample_info Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM makereport_sample_info Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===makereport_sample_infoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewconferencerecordandregistrationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewconferencerecordandregistrationSELECT * FROM managementreviewconferencerecordandregistration Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,745 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewconferencerecordandregistration Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewconferencerecordandregistrationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewinputGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,747 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewinputSELECT * FROM managementreviewinput Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewinput Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewinputMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewoutputGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewoutputSELECT * FROM managementreviewoutput Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,751 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewoutput Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewoutputMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplanSELECT * FROM managementreviewplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,754 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub1GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,757 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub1SELECT * FROM managementreviewplan_sub1 Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub1MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewplan_sub2GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewplan_sub2SELECT * FROM managementreviewplan_sub2 Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,761 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewplan_sub2 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewplan_sub2MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===managementreviewreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===managementreviewreportSELECT * FROM managementreviewreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,764 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM managementreviewreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===managementreviewreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mechanicaloperationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mechanicaloperationSELECT * FROM mechanicaloperation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,767 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,768 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,770 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mechanicaloperation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mechanicaloperationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===mineGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===mineSELECT * FROM mine Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,771 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM mine Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM mine Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM mine Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===mineMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===monitoringplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===monitoringplanSELECT * FROM monitoringplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,774 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM monitoringplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===monitoringplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===noticecontractdeviationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===noticecontractdeviationSELECT * FROM noticecontractdeviation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,777 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM noticecontractdeviation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===noticecontractdeviationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===nz_threecode_viewGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,780 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===nz_threecode_viewSELECT * FROM nz_threecode_view Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,781 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM nz_threecode_view Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===nz_threecode_viewMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===observationitemrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===observationitemrecordSELECT * FROM observationitemrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,789 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM observationitemrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===observationitemrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,792 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===obsoletefilerecordapplicationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===obsoletefilerecordapplicationSELECT * FROM obsoletefilerecordapplication Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,793 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM obsoletefilerecordapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===obsoletefilerecordapplicationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreportSELECT * FROM officialtestreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,796 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===officialtestreport_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===officialtestreport_subSELECT * FROM officialtestreport_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,798 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,799 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM officialtestreport_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===officialtestreport_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,801 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereportSELECT * FROM onportsamplereport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,802 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub1GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub1SELECT * FROM onportsamplereport_sub1 Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,805 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub1 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub1MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===onportsamplereport_sub2GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===onportsamplereport_sub2SELECT * FROM onportsamplereport_sub2 Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,808 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM onportsamplereport_sub2 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===onportsamplereport_sub2MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===orgGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,811 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===orgSELECT * FROM org Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,812 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM org Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===orgMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===organizationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,814 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===organizationSELECT * FROM organization Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM organization Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM organization Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM organization Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===organizationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecordSELECT * FROM oxygenrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,818 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===oxygenrecord_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===oxygenrecord_subSELECT * FROM oxygenrecord_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM oxygenrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===oxygenrecord_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===postmanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,824 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===postmanagementSELECT * FROM postmanagement Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,825 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM postmanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===postmanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===purchaseapplicationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===purchaseapplicationSELECT * FROM purchaseapplication Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,830 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM purchaseapplication Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===purchaseapplicationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualifiedsupplierslistGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualifiedsupplierslistSELECT * FROM qualifiedsupplierslist Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualifiedsupplierslist Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualifiedsupplierslistMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualityhandbookGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualityhandbookSELECT * FROM qualityhandbook Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,837 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualityhandbook Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualityhandbookMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===qualitypolicyobjGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===qualitypolicyobjSELECT * FROM qualitypolicyobj Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,838 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,840 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM qualitypolicyobj Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===qualitypolicyobjMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_insulatingoilGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_insulatingoilSELECT * FROM report_insulatingoil Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,841 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,842 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_insulatingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_insulatingoilMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newgreaseGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newgreaseSELECT * FROM report_newgrease Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,843 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,844 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newgrease Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newgreaseMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_newoilGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_newoilSELECT * FROM report_newoil Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,845 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,846 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_newoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_newoilMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===report_usingoilGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===report_usingoilSELECT * FROM report_usingoil Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,847 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM report_usingoil Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===report_usingoilMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportissuerecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportissuerecordSELECT * FROM reportissuerecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,849 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportissuerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportissuerecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===reportmainGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===reportmainSELECT * FROM reportmain Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,852 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,853 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM reportmain Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM reportmain Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM reportmain Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===reportmainMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===riskevaluationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,854 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===riskevaluationSELECT * FROM riskevaluation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,855 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM riskevaluation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===riskevaluationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,857 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_ashSELECT * FROM rulu_analysis_ash Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,858 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,860 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_autoGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_autoSELECT * FROM rulu_analysis_auto Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_auto Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_autoMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_calorificSELECT * FROM rulu_analysis_calorific Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,864 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,865 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,867 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_chnSELECT * FROM rulu_analysis_chn Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_moistureSELECT * FROM rulu_analysis_moisture Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,871 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_stadSELECT * FROM rulu_analysis_stad Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,874 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,877 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_totalmoistureSELECT * FROM rulu_analysis_totalmoisture Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===rulu_analysis_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===rulu_analysis_volatileSELECT * FROM rulu_analysis_volatile Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,881 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM rulu_analysis_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===rulu_analysis_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,884 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,886 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===safetyrecord_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecord_subSELECT * FROM safetyrecord_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,890 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecord_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sample_batchid_codeGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,893 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sample_batchid_codeSELECT * FROM sample_batchid_code Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,894 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sample_batchid_code Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sample_batchid_codeMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleaccessrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleaccessrecordSELECT * FROM sampleaccessrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,898 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleaccessrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleaccessrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampledestroyrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampledestroyrecordSELECT * FROM sampledestroyrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,903 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampledestroyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampledestroyrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampleparamterGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampleparamterSELECT * FROM sampleparamter Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampleparamter Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampleparamterMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sampletakerecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sampletakerecordSELECT * FROM sampletakerecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,908 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sampletakerecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sampletakerecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereportSELECT * FROM samplingmakereport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingmakereport_logGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingmakereport_logSELECT * FROM samplingmakereport_log Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingmakereport_log Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingmakereport_logMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecordSELECT * FROM samplingrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,919 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===samplingrecord_logGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===samplingrecord_logSELECT * FROM samplingrecord_log Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,921 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM samplingrecord_log Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===samplingrecord_logMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===scheduleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===scheduleSELECT * FROM schedule Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,924 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM schedule Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM schedule Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM schedule Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,926 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===scheduleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===secondarycoalrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===secondarycoalrecordSELECT * FROM secondarycoalrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM secondarycoalrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===secondarycoalrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecordSELECT * FROM sievingrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===sievingrecord_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===sievingrecord_subSELECT * FROM sievingrecord_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,933 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM sievingrecord_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===sievingrecord_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===simplifiedreportGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,936 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===simplifiedreportSELECT * FROM simplifiedreport Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,937 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM simplifiedreport Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===simplifiedreportMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===softwareverificationrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===softwareverificationrecordSELECT * FROM softwareverificationrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,940 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,941 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM softwareverificationrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===softwareverificationrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardchangeassessmentGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,943 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardchangeassessmentSELECT * FROM standardchangeassessment Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,944 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardchangeassessment Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardchangeassessmentMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmattercheckandacceptrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmattercheckandacceptrecordSELECT * FROM standardmattercheckandacceptrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,947 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmattercheckandacceptrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmattercheckandacceptrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardmatterinandoutrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardmatterinandoutrecordSELECT * FROM standardmatterinandoutrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardmatterinandoutrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardmatterinandoutrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===standardverificationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===standardverificationSELECT * FROM standardverification Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM standardverification Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM standardverification Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM standardverification Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,956 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===standardverificationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheckGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheckSELECT * FROM statementandrecognitionstatecheck Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,958 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheckMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===statementandrecognitionstatecheck_subGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===statementandrecognitionstatecheck_subSELECT * FROM statementandrecognitionstatecheck_sub Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM statementandrecognitionstatecheck_sub Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===statementandrecognitionstatecheck_subMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stationSELECT * FROM station Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,962 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM station Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM station Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM station Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supervisionrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,964 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supervisionrecordSELECT * FROM supervisionrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===supplierevaluationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,967 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===supplierevaluationSELECT * FROM supplierevaluation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,968 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM supplierevaluation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===supplierevaluationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_css_sampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_css_sampleSELECT * FROM t_css_sample Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,971 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_css_sample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_css_sampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_plantthreecodeGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_plantthreecodeSELECT * FROM t_opt_plantthreecode Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_plantthreecode Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_plantthreecodeMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleppreparationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,978 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleppreparationSELECT * FROM t_opt_sampleppreparation Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,979 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleppreparation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleppreparationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===t_opt_sampleprepareresultGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,981 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===t_opt_sampleprepareresultSELECT * FROM t_opt_sampleprepareresult Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM t_opt_sampleprepareresult Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===t_opt_sampleprepareresultMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tablemanagementGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tablemanagementSELECT * FROM tablemanagement Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tablemanagement Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tablemanagementMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tableparamGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tableparamSELECT * FROM tableparam Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,987 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tableparam Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tableparam Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tableparam Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tableparamMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchSELECT * FROM tcoalbatch Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,991 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalbatchassayGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalbatchassaySELECT * FROM tcoalbatchassay Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalbatchassay Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalbatchassayMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalsampleGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:03,998 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalsampleSELECT * FROM tcoalsample Where 0=1 +¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:03,999 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalsample Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalsampleMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===tcoalweightGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,001 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===tcoalweightSELECT * FROM tcoalweight Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===test888GetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===test888SELECT * FROM test888 Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM test888 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM test888 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM test888 Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===test888MySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testitemGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testitemSELECT * FROM testitem Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,008 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,009 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testitem Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testitem Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testitem Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,011 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testitemMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===testmethodvalidationGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===testmethodvalidationSELECT * FROM testmethodvalidation Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM testmethodvalidation Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===testmethodvalidationMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===timerGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===timerSELECT * FROM timer Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM timer Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM timer Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM timer Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===timerMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===totalwaterrecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===totalwaterrecordSELECT * FROM totalwaterrecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM totalwaterrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===totalwaterrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainappraiseGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainappraiseSELECT * FROM trainappraise Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainappraise Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainappraiseMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainplanGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainplanSELECT * FROM trainplan Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,025 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,027 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainplan Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainplanMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===trainrecordandsignGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===trainrecordandsignSELECT * FROM trainrecordandsign Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM trainrecordandsign Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===trainrecordandsignMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_analysis_dataGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_analysis_dataSELECT * FROM view_analysis_data Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,031 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_analysis_data Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_analysis_dataMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_boiler_qualityGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_boiler_qualitySELECT * FROM view_boiler_quality Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,034 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_boiler_quality Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_boiler_qualityMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_ashGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_ashSELECT * FROM view_rulu_ash Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_ash Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_ashMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_calorificGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,037 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_calorificSELECT * FROM view_rulu_calorific Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_calorific Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_calorificMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_chnGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_chnSELECT * FROM view_rulu_chn Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_chn Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_chnMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_moistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_moistureSELECT * FROM view_rulu_moisture Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_moisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_moistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,041 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_stadGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_stadSELECT * FROM view_rulu_stad Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_stad Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_stadMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_totalmoistureGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_totalmoistureSELECT * FROM view_rulu_totalmoisture Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_totalmoisture Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_totalmoistureMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_rulu_volatileGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_rulu_volatileSELECT * FROM view_rulu_volatile Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_rulu_volatile Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_rulu_volatileMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalbatchGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalbatchSELECT * FROM view_tcoalbatch Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalbatch Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalbatchMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===view_tcoalweightGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,047 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===view_tcoalweightSELECT * FROM view_tcoalweight Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM view_tcoalweight Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===view_tcoalweightMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===wasterecordGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===wasterecordSELECT * FROM wasterecord Where 0=1 +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:04,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM wasterecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:04,052 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===wasterecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'server=127.0.0.1;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:28:19,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet +¼ʱ䣺2025-02-19 09:28:19,450 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ABILITYSUPERVISIONRECORD'System.Data.DataSet +¼ʱ䣺2025-02-19 09:35:23,101 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:35:23,139 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:35:25,418 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:35:25,425 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:35:26,885 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:35:26,893 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 09:36:22,052 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵ޷ʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - ޷򿪵 SQL Server ) +¼ʱ䣺2025-02-19 09:36:42,303 ߳ID:[1]- :SqlServerDAL :TestSQLServerLink Ϣ: SQL Server ʱصĻضʵĴδҵ޷ʷ֤ʵǷȷ SQL Server ΪԶӡ (provider: Named Pipes Provider, error: 40 - ޷򿪵 SQL Server ) +¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:37:59,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:37:59,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet +¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet +¼ʱ䣺2025-02-19 09:37:59,966 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'APEXSQL_LOG_CONNECTION_MONITOR_SESSION'System.Data.DataSet +¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:37:59,992 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 09:37:59,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:38:00,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 09:38:00,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:38:55,160 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet +¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet +¼ʱ䣺2025-02-19 09:38:55,165 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet +¼ʱ䣺2025-02-19 09:40:14,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:40:14,779 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 09:40:14,780 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet +¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet +¼ʱ䣺2025-02-19 09:40:14,785 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'ϸ'System.Data.DataSet +¼ʱ䣺2025-02-19 10:12:26,682 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:12:26,716 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:12:28,940 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:12:28,947 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:12:30,452 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:12:30,460 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:16,772 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:16,807 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:19,099 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:19,106 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:20,670 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:20,678 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:26:58,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 10:26:58,483 ߳ID:[1]- :MySQLDAL :GetTableTypeAndLenth Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 10:26:58,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 10:26:58,523 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 10:30:19,417 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:30:19,452 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:30:21,920 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:30:21,927 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:30:23,374 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:30:23,382 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:31:22,020 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Unknown database 'cnas' +¼ʱ䣺2025-02-19 10:31:28,260 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:31:28,261 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:31:28,262 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:31:28,480 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:31:28,554 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:31:28,555 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:31:28,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:31:28,615 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:31:28,661 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:33:35,329 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'STU'System.Data.DataSet +¼ʱ䣺2025-02-19 10:33:35,525 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: ﷨ "'ColumnName'" 򸽽 + +POSITION: 23 +¼ʱ䣺2025-02-19 10:33:35,531 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42601: ﷨ "'ColumnName'" 򸽽 + +POSITION: 23 +¼ʱ䣺2025-02-19 10:45:50,899 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:42601: ﷨ "'ColumnName'" 򸽽 + +POSITION: 23 +¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:45:57,242 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:46:16,620 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction +¼ʱ䣺2025-02-19 10:46:16,626 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:NpgsqlTransaction +¼ʱ䣺2025-02-19 10:46:24,636 ߳ID:[1]- :SelectTableType :PostgreSql Ϣ:NpgsqlTransaction +¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:47:03,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:03,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:47:03,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:03,457 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:47:33,865 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:33,919 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:47:34,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:34,126 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:47:34,201 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:49:12,036 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:12,131 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:12,198 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:23,318 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:49:23,319 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:23,321 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:49:23,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:49:23,373 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:49:23,378 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:50:49,281 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,334 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,385 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:50:49,386 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,443 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:50:49,487 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:51:49,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,577 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,632 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'STU'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:51:49,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cans'System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:51:49,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'server=localhost;port=3306;user=root;password=zjh123;database=cans;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-19 10:51:49,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:51:49,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select COLUMN_NAME AS 'ColumnName',IS_NULLABLE AS 'IsNullable',DATA_TYPE AS 'DataType',CHARACTER_MAXIMUM_LENGTH AS 'CharMaxLenth',CHARACTER_OCTET_LENGTH AS 'CharOcterLenth',NUMERIC_PRECISION AS 'NumericPrecision',NUMERIC_SCALE AS 'NumericScale',COLUMN_COMMENT as 'remark' FROM information_schema.COLUMNS WHERE TABLE_NAME LIKE 'abilitysupervisionrecord'System.Data.DataSet +¼ʱ䣺2025-02-19 10:52:15,796 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:52:15,831 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:52:18,015 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:52:18,022 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:52:19,487 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:52:19,495 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:53:56,181 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:53:56,182 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:53:56,183 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:53:56,403 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:53:56,478 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:53:56,479 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:53:56,545 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:53:56,616 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:53:56,617 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:54:03,487 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:54:03,488 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:03,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:03,617 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:13,190 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 10:54:13,196 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 10:54:29,218 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:54:29,219 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:29,277 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 10:54:29,327 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:29,394 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 10:54:29,451 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 10:54:49,497 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:54:49,532 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:54:51,185 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:54:51,192 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:54:52,749 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:54:52,757 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 10:56:22,916 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 10:56:22,922 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 10:56:22,929 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 10:57:13,533 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:The ConnectionString property has not been initialized. +¼ʱ䣺2025-02-19 11:05:10,679 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 11:05:10,713 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 11:05:12,932 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 11:05:12,939 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 11:05:14,406 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 11:05:14,414 ߳ID:[1]- :DmDAL :GetTableNames Ϣ:6001,[LOCALHOST:5236 (UNKNOW, UNKNOW)]Ŀܾ޷ӡ [::1]:5236 + +¼ʱ䣺2025-02-19 11:05:57,236 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 11:05:57,242 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 11:05:57,248 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 11:06:05,633 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ: +﷨ [sql]: {SELECT + COLUMN_NAME AS 'ColumnName', + NULLABLE AS 'IsNullable', + DATA_TYPE AS 'DataType', + DATA_LENGTH AS 'CharMaxLenth', + DATA_LENGTH AS 'CharOcterLenth', + DATA_PRECISION AS 'NumericPrecision', + DATA_SCALE AS 'NumericScale' + FROM USER_TAB_COLUMNS + WHERE TABLE_NAME = 'STU'}; +¼ʱ䣺2025-02-19 11:06:05,640 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 56 [']ִ: +﷨ [sql]: {SELECT + COLUMN_NAME AS 'ColumnName', + NULLABLE AS 'IsNullable', + DATA_TYPE AS 'DataType', + DATA_LENGTH AS 'CharMaxLenth', + DATA_LENGTH AS 'CharOcterLenth', + DATA_PRECISION AS 'NumericPrecision', + DATA_SCALE AS 'NumericScale' + FROM USER_TAB_COLUMNS + WHERE TABLE_NAME = 'STU'}; +¼ʱ䣺2025-02-19 11:08:24,907 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 56 [']ִ: +﷨ [sql]: {SELECT + COLUMN_NAME AS 'ColumnName', + NULLABLE AS 'IsNullable', + DATA_TYPE AS 'DataType', + DATA_LENGTH AS 'CharMaxLenth', + DATA_LENGTH AS 'CharOcterLenth', + DATA_PRECISION AS 'NumericPrecision', + DATA_SCALE AS 'NumericScale' + FROM USER_TAB_COLUMNS + WHERE TABLE_NAME = 'STU'}; +¼ʱ䣺2025-02-19 11:13:38,201 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ: +Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS +FROM USER_TAB_COLUMNS +WHERE TABLE_NAME = 'STU';}; +¼ʱ䣺2025-02-19 11:13:38,207 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ: +Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS +FROM USER_TAB_COLUMNS +WHERE TABLE_NAME = 'STU';}; +¼ʱ䣺2025-02-19 11:14:08,488 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ: +Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,TABLE_NAME, COMMENTS +FROM USER_TAB_COLUMNS +WHERE TABLE_NAME = 'STU';}; +¼ʱ䣺2025-02-19 11:14:21,443 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ: +Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS +FROM USER_TAB_COLUMNS +WHERE TABLE_NAME = 'STU';}; +¼ʱ䣺2025-02-19 11:14:21,450 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:3 иִ: +Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS +FROM USER_TAB_COLUMNS +WHERE TABLE_NAME = 'STU';}; +¼ʱ䣺2025-02-19 11:14:32,145 ߳ID:[1]- :SelectTableType :DmSql Ϣ:3 иִ: +Ч[COMMENTS] [sql]: {SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH, NULLABLE,COMMENTS +FROM USER_TAB_COLUMNS +WHERE TABLE_NAME = 'STU';}; +¼ʱ䣺2025-02-19 11:25:27,296 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ: +﷨ [sql]: {SELECT + a.COLUMN_NAME AS 'InstruFieldName', + b.COMMENTS AS 'remark', + a.DATA_TYPE || CASE + WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')' + WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')' + ELSE '' + END AS 'InstruDataType' +FROM + ALL_TAB_COLUMNS a +LEFT JOIN + ALL_COL_COMMENTS b + ON a.OWNER = b.OWNER + AND a.TABLE_NAME = b.TABLE_NAME + AND a.COLUMN_NAME = b.COLUMN_NAME +WHERE + a.TABLE_NAME = 'STU' + +ORDER BY + a.COLUMN_ID;}; +¼ʱ䣺2025-02-19 11:25:27,303 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 2 , 52 [']ִ: +﷨ [sql]: {SELECT + a.COLUMN_NAME AS 'InstruFieldName', + b.COMMENTS AS 'remark', + a.DATA_TYPE || CASE + WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')' + WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')' + ELSE '' + END AS 'InstruDataType' +FROM + ALL_TAB_COLUMNS a +LEFT JOIN + ALL_COL_COMMENTS b + ON a.OWNER = b.OWNER + AND a.TABLE_NAME = b.TABLE_NAME + AND a.COLUMN_NAME = b.COLUMN_NAME +WHERE + a.TABLE_NAME = 'STU' + +ORDER BY + a.COLUMN_ID;}; +¼ʱ䣺2025-02-19 11:26:15,401 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 2 , 52 [']ִ: +﷨ [sql]: {SELECT + a.COLUMN_NAME AS 'InstruFieldName', + b.COMMENTS AS 'remark', + a.DATA_TYPE || CASE + WHEN a.DATA_TYPE IN('VARCHAR', 'CHAR') THEN '(' || a.DATA_LENGTH || ')' + WHEN a.DATA_TYPE IN('DECIMAL', 'NUMERIC') THEN '(' || a.DATA_PRECISION || ',' || a.DATA_SCALE || ')' + ELSE '' + END AS 'InstruDataType' +FROM + ALL_TAB_COLUMNS a +LEFT JOIN + ALL_COL_COMMENTS b + ON a.OWNER = b.OWNER + AND a.TABLE_NAME = b.TABLE_NAME + AND a.COLUMN_NAME = b.COLUMN_NAME +WHERE + a.TABLE_NAME = 'STU' + +ORDER BY + a.COLUMN_ID;}; +¼ʱ䣺2025-02-19 11:30:18,078 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ: +޷ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT + * +FROM + ALL_COL_COMMENTS + + + +WHERE + ALL_COL_COMMENTS.TABLE_NAME = 'STU' + +ORDER BY + ALL_COL_COMMENTS.COLUMN_ID;}; +¼ʱ䣺2025-02-19 11:30:18,084 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:12 иִ: +޷ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT + * +FROM + ALL_COL_COMMENTS + + + +WHERE + ALL_COL_COMMENTS.TABLE_NAME = 'STU' + +ORDER BY + ALL_COL_COMMENTS.COLUMN_ID;}; +¼ʱ䣺2025-02-19 11:30:44,490 ߳ID:[1]- :SelectTableType :DmSql Ϣ:12 иִ: +޷ijԱʱʽ[ALL_COL_COMMENTS.COLUMN_ID] [sql]: {SELECT + * +FROM + ALL_COL_COMMENTS + + + +WHERE + ALL_COL_COMMENTS.TABLE_NAME = 'STU' + +ORDER BY + ALL_COL_COMMENTS.COLUMN_ID;}; +¼ʱ䣺2025-02-19 11:31:49,841 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ: +﷨ [sql]: {SELECT + * +FROM + ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;}; +¼ʱ䣺2025-02-19 11:31:49,848 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ: 4 , 59 [TABLE_NAME]ִ: +﷨ [sql]: {SELECT + * +FROM + ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;}; +¼ʱ䣺2025-02-19 11:33:10,383 ߳ID:[1]- :SelectTableType :DmSql Ϣ: 4 , 59 [TABLE_NAME]ִ: +﷨ [sql]: {SELECT + * +FROM + ALL_COL_COMMENTS WHRER TABLE_NAME=STU ;}; +¼ʱ䣺2025-02-19 11:34:23,501 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:34:23,507 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:34:34,320 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 11:34:34,326 ߳ID:[1]- :DamengHelper :ExecuteDataSet Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 11:34:34,332 ߳ID:[1]- :DmDAL :GetTableStruct Ϣ:1 иִ: +Чıͼ[TABLE_1] [sql]: {SELECT * FROM TEST.TABLE_1 Where 0=1}; +¼ʱ䣺2025-02-19 11:34:59,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:34:59,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:38:48,756 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:38:48,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:48,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:48,981 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:48,987 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:38:48,988 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:49,066 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:49,154 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:38:51,247 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:51,457 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:51,590 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:38:51,640 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:38:51,647 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:09,448 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:09,449 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:09,574 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:09,728 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:09,729 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:09,921 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:10,101 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 11:39:11,704 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:11,705 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:11,840 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:11,934 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:11,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:39:11,981 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = ''; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:39:19,784 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = ''; System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:19,911 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = ''; System.Data.DataSet +¼ʱ䣺2025-02-19 11:39:20,048 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = ''; System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===myPselect * ,'hello' title from stu where 0=1 +¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:40:49,196 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:49,390 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===select * ,'hello' title from stu where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:49,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===myPPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 11:40:58,387 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:40:58,388 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:58,495 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='cnas' and table_schema='public'System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:40:58,631 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:58,767 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-19 11:40:58,885 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:41:00,359 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-19 11:41:00,360 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:41:00,462 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:41:00,541 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT + a.attname as ColumnName, + format_type(a.atttypid, a.atttypmod) as DataType, + a.attnotnull as ǿ, + col_description(a.attrelid, a.attnum) as remark + FROM + pg_class as c, pg_attribute as a + where + a.attrelid = c.oid + and + a.attnum > 0 + and + c.relname = 'stu'; System.Data.DataSet +¼ʱ䣺2025-02-19 11:41:00,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:Access denied for user 'root'@'localhost' (using password: YES) +¼ʱ䣺2025-02-19 11:41:00,592 ߳ID:[1]- :MySQLDAL :GetTableNames Ϣ:Access denied for user 'root'@'localhost' (using password: YES) diff --git a/dll/Newtonsoft.Json.dll b/dll/Newtonsoft.Json.dll index 7af125a..55d537f 100644 Binary files a/dll/Newtonsoft.Json.dll and b/dll/Newtonsoft.Json.dll differ