diff --git a/CNAS_DBSync/frmDatabaseParams.cs b/CNAS_DBSync/frmDatabaseParams.cs index 85566b9..414e9bd 100644 --- a/CNAS_DBSync/frmDatabaseParams.cs +++ b/CNAS_DBSync/frmDatabaseParams.cs @@ -245,6 +245,12 @@ namespace CNAS_DBSync break; case DataSourceType.Excel: case DataSourceType.PostgreSQL: + syncInstrumentItem.SyncInstrumentDSInfo.Host = this.txtPostgreSqlHost.Text.Trim(); + syncInstrumentItem.SyncInstrumentDSInfo.ServerName = this.txtPostgreSqlServer.Text.Trim(); + syncInstrumentItem.SyncInstrumentDSInfo.UserId = this.txtPostgreSqlUser.Text.Trim(); + syncInstrumentItem.SyncInstrumentDSInfo.UserPwd = this.txtPostgreSqlPwd.Text.Trim(); + syncInstrumentItem.SyncInstrumentDSInfo.Port = this.txtPostgreSqlPort.Text.Trim(); + break; default: syncInstrumentItem.SyncInstrumentDSInfo.Path = this.txtInportExcel.Text.Trim(); syncInstrumentItem.SyncInstrumentDSInfo.Host = ""; @@ -1095,33 +1101,65 @@ namespace CNAS_DBSync private void btnPostgreSqlConn_Click(object sender, EventArgs e) { - if (CnasDataOperationFact.CnasDataOperation().TestConnect(new DataBaseInfo() + + //if (CnasDataOperationFact.CnasDataOperation().TestConnect(new DataBaseInfo() + //{ + // DBHost = this.txtPostgreSqlHost.Text.Trim(), + // DBName = this.txtPostgreSqlServer.Text.Trim(), + // DBUser = this.txtPostgreSqlUser.Text.Trim(), + // DBPwd = this.txtPostgreSqlPwd.Text.Trim(), + // DBPort = this.txtPostgreSqlPort.Text.Trim() + //})) + // MessageBox.Show("连接成功!"); + //else + // MessageBox.Show("连接失败!"); + + if (this.txtPostgreSqlHost.Text.Trim() == "" || this.txtPostgreSqlServer.Text.Trim() == "" || + this.txtPostgreSqlUser.Text.Trim() == "" || this.txtPostgreSqlPort.Text.Trim() == "") { - DBHost = this.txtPostgreSqlHost.Text.Trim(), - DBName = this.txtPostgreSqlServer.Text.Trim(), - DBUser = this.txtPostgreSqlUser.Text.Trim(), - DBPwd = this.txtPostgreSqlPwd.Text.Trim(), - DBPort = this.txtPostgreSqlPort.Text.Trim() - })) + MessageBox.Show("请填写相关连接信息。"); + return; + } + + InstrumentDataSourceInfo dbinfo = new InstrumentDataSourceInfo(); + dbinfo.Host = this.txtPostgreSqlHost.Text.Trim(); + dbinfo.ServerName = this.txtPostgreSqlServer.Text.Trim(); + dbinfo.UserId = this.txtPostgreSqlUser.Text.Trim(); + dbinfo.UserPwd = this.txtPostgreSqlPwd.Text.Trim(); + dbinfo.Port = this.txtPostgreSqlPort.Text.Trim(); + //SQLServerInstrumentData + if (new PostgreSQLServerInstrumentData(dbinfo, new object[] { + "", + "", + "" + }).TestSQLServerLink()) MessageBox.Show("连接成功!"); else MessageBox.Show("连接失败!"); - //if (this.txtPostgreSqlHost.Text.Trim() == "" || this.txtPostgreSqlServer.Text.Trim() == "" || - // this.txtPostgreSqlUser.Text.Trim() == "" || this.txtPostgreSqlPort.Text.Trim() == "") + //if (new PostgreSQLServerInstrumentData(dbinfo, new object[] { "", "", "" }).TestConnection()) + // MessageBox.Show("连接成功!"); + //else + // MessageBox.Show("连接失败!"); + + + //if (this.txtSqlServerHost.Text.Trim() == "" || this.txtSqlServerName.Text.Trim() == "" || this.txtSqlServerUser.Text.Trim() == "") //{ // MessageBox.Show("请填写相关连接信息。"); // return; //} //InstrumentDataSourceInfo dbinfo = new InstrumentDataSourceInfo(); - //dbinfo.Host = this.txtPostgreSqlHost.Text.Trim(); - //dbinfo.ServerName = this.txtPostgreSqlServer.Text.Trim(); - //dbinfo.UserId = this.txtPostgreSqlUser.Text.Trim(); - //dbinfo.UserPwd = this.txtPostgreSqlPwd.Text.Trim(); - //dbinfo.Port = this.txtPostgreSqlPort.Text.Trim(); - - //if (new PostgreSqlInstrumentData(dbinfo, new object[] { "", "", "" }).TestConnection()) + //dbinfo.Host = this.txtSqlServerHost.Text.Trim(); + //dbinfo.ServerName = this.txtSqlServerName.Text.Trim(); + //dbinfo.UserId = this.txtSqlServerUser.Text.Trim(); + //dbinfo.UserPwd = this.txtSqlServerPwd.Text.Trim(); + //dbinfo.Port = this.txtSqlServerPort.Text.Trim(); + //if (new SQLServerInstrumentData(dbinfo, new object[] { + // "", + // "", + // "" + //}).TestSQLServerLink()) // MessageBox.Show("连接成功!"); //else // MessageBox.Show("连接失败!"); diff --git a/CnasSynchronusClient/CnasSynchronusBLL.csproj b/CnasSynchronusClient/CnasSynchronusBLL.csproj index 3a71dc6..71e5589 100644 --- a/CnasSynchronusClient/CnasSynchronusBLL.csproj +++ b/CnasSynchronusClient/CnasSynchronusBLL.csproj @@ -50,6 +50,7 @@ + @@ -80,6 +81,7 @@ + diff --git a/CnasSynchronusClient/Factory/InstrumentDataSourceFact.cs b/CnasSynchronusClient/Factory/InstrumentDataSourceFact.cs index 4a986a9..fb92e5d 100644 --- a/CnasSynchronusClient/Factory/InstrumentDataSourceFact.cs +++ b/CnasSynchronusClient/Factory/InstrumentDataSourceFact.cs @@ -46,6 +46,9 @@ namespace CnasSynchronusClient case DataSourceType.TXT: instrumentData = new TXTInstrumentData(dataSourceInfo, obj); break; + case DataSourceType.PostgreSQL: + instrumentData = new PostgreSQLServerInstrumentData(dataSourceInfo, obj); + break; case DataSourceType.Excel: default: instrumentData = new ExcelInstrumentData(dataSourceInfo,obj); diff --git a/CnasSynchronusClient/InsturmentData/PostgreSQLServerInstrumentData.cs b/CnasSynchronusClient/InsturmentData/PostgreSQLServerInstrumentData.cs new file mode 100644 index 0000000..4d55894 --- /dev/null +++ b/CnasSynchronusClient/InsturmentData/PostgreSQLServerInstrumentData.cs @@ -0,0 +1,124 @@ +using CnasSynchronousCommon; +using CnasSynchronusDAL; +using CnasSynchronusIDAL; +using CnasSynchrousModel; +using System; +using System.Collections.Generic; +using System.Data; +using System.Data.SqlClient; +using System.Linq; +using System.Text; + +namespace CnasSynchronusClient +{ + public class PostgreSQLServerInstrumentData : InstrumentData + { + public string StrHost { get; set; } + + public string StrServerName { get; set; } + + public string StrUser { get; set; } + + public string StrPwd { get; set; } + + public string strTableName { get; set; } + + public string strDateColumn { get; set; } + + public string strDate { get; set; } + + public string StrPort { get; set; } + + public IPostgreSqlDBService mysqlDataBaseService { get { return new PostgreSqlDBService(); } } + + public PostgreSqlFormatConfig PostgreSqlFormat { get; set; } + + public PostgreSQLServerInstrumentData(InstrumentDataSourceInfo dataSourceInfo, object[] vs) + { + try + { + PostgreSqlFormat = FileOperation.GetFormatConfigData("PostgreSqlFormatConfig.xml"); + + this.StrHost = dataSourceInfo.Host; + this.StrServerName = dataSourceInfo.ServerName; + this.StrUser = dataSourceInfo.UserId; + this.StrPwd = dataSourceInfo.UserPwd; + this.StrPort = dataSourceInfo.Port; + + this.strTableName = vs[0].ToString(); + this.strDateColumn = vs[1].ToString(); + this.strDate = vs[2].ToString(); + } + catch (Exception ex) + { + AppLog.Error(ex.Message); + } + } + + public override Dictionary GetInstrumentData() + { + return mysqlDataBaseService.GetInstrumentData(new PostgreSQLOpenParams { StrHost = StrHost, StrServer = StrServerName, StrUser = StrUser, StrPwd = StrPwd, StrPort = StrPort }); + } + + public override DataTable GetInstrumentDataByDate() + { + return mysqlDataBaseService.GetInstrumentDataByDate( + new PostgreSQLOpenParams + { + StrHost = StrHost, + StrServer = StrServerName, + StrUser = StrUser, + StrPwd = StrPwd, + StrPort = StrPort, + autoSql = PostgreSqlFormat.AutoSql + }, + new ConditionParams + { + TableName = strTableName, + DateColumn = strDateColumn, + DateValue = strDate + } + ); + } + + public override DataTable GetInstrumentDataStruct() + { + return mysqlDataBaseService.GetInstrumentDataStruct( + new PostgreSQLOpenParams + { + StrHost = StrHost, + StrServer = StrServerName, + StrUser = StrUser, + StrPwd = StrPwd, + StrPort = StrPort, + autoSql = PostgreSqlFormat.AutoSql + }, + new ConditionParams + { + TableName = strTableName + } + ); + } + + /// + /// 测试连接 + /// + /// + public bool TestSQLServerLink() + { + return mysqlDataBaseService.TestConnect( + StrHost,StrServerName,StrUser,StrPwd,StrPort + ); + //{ + // =StrHost, + // = StrServerName, + // = StrUser, + // StrPwd, + // = "", + // StrConnecttion = StrConnection + //}); + } + + + } +} diff --git a/CnasSynchronusDAL/CnasSynchronusDAL.csproj b/CnasSynchronusDAL/CnasSynchronusDAL.csproj index 2728f6b..3e51a30 100644 --- a/CnasSynchronusDAL/CnasSynchronusDAL.csproj +++ b/CnasSynchronusDAL/CnasSynchronusDAL.csproj @@ -123,6 +123,7 @@ + diff --git a/CnasSynchronusDAL/DAL/Helper/PostgreSQLHelper.cs b/CnasSynchronusDAL/DAL/Helper/PostgreSQLHelper.cs index e951af8..e3dc3dc 100644 --- a/CnasSynchronusDAL/DAL/Helper/PostgreSQLHelper.cs +++ b/CnasSynchronusDAL/DAL/Helper/PostgreSQLHelper.cs @@ -1,10 +1,11 @@ - -using System; +using System; using System.Collections.Generic; using System.Data; using System.Linq; using System.Text; using CnasSynchronousCommon; +using Npgsql; +using NpgsqlTypes; namespace CnasSynchronusDAL { @@ -15,7 +16,7 @@ namespace CnasSynchronusDAL public static void InitConnectionString(string strServerIP,string strServerPort,string strServerHost,string strServerUser,string strServerPwd) { - mConnStr = "server=" + strServerIP + ";port=" + strServerPort + ";user=" + strServerUser + ";password=" + strServerPwd + ";database=" + strServerHost + ";CharSet=utf8;Allow User Variables=True"; + mConnStr = $"Server={strServerIP};Port={strServerPort};Database={strServerHost};User Id={strServerUser};Password={strServerPwd};"; } public static void InitConnectionString(string strConnectiong) @@ -30,15 +31,15 @@ namespace CnasSynchronusDAL /// public static int ExecuteNonQuery(String sql) { - MySqlConnection connection = new MySqlConnection(mConnStr); + NpgsqlConnection connection = new NpgsqlConnection(mConnStr); try { using (connection) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - using (MySqlCommand cmd = new MySqlCommand()) + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { @@ -50,7 +51,7 @@ namespace CnasSynchronusDAL cmd.Parameters.Clear(); return rows; } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -59,10 +60,10 @@ namespace CnasSynchronusDAL catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -70,15 +71,7 @@ namespace CnasSynchronusDAL catch (Exception e) { AppLog.Error(e.Message); - throw e; - } - finally - { - if (connection != null) - { - //关闭数据库连接 - connection.Close(); - } + throw; } } @@ -87,16 +80,16 @@ namespace CnasSynchronusDAL /// /// 要执行的增删改的SQL语句 /// - public static int ExecuteNonQuery(String sql, MySqlParameter[] cmdParams) + public static int ExecuteNonQuery(String sql, NpgsqlParameter[] cmdParams) { try { - using (MySqlConnection connection = new MySqlConnection(mConnStr)) + using (NpgsqlConnection connection = new NpgsqlConnection(mConnStr)) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - using (MySqlCommand cmd = new MySqlCommand()) + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { @@ -108,7 +101,7 @@ namespace CnasSynchronusDAL cmd.Parameters.Clear(); return rows; } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -117,10 +110,10 @@ namespace CnasSynchronusDAL catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -128,7 +121,7 @@ namespace CnasSynchronusDAL catch (Exception e) { AppLog.Error(e.Message); - throw e; + throw; } } @@ -141,12 +134,12 @@ namespace CnasSynchronusDAL { try { - using (MySqlConnection connection = new MySqlConnection(mConnStr)) + using (NpgsqlConnection connection = new NpgsqlConnection(mConnStr)) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - using (MySqlCommand cmd = new MySqlCommand()) + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { @@ -162,7 +155,7 @@ namespace CnasSynchronusDAL return line; } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -171,11 +164,11 @@ namespace CnasSynchronusDAL catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -183,7 +176,7 @@ namespace CnasSynchronusDAL catch (Exception e) { AppLog.Error(e.Message); - throw e; + throw; } } @@ -192,16 +185,16 @@ namespace CnasSynchronusDAL /// /// /// - public static int ExecuteScalar(String sql, MySqlParameter[] cmdParams) + public static int ExecuteScalar(String sql, NpgsqlParameter[] cmdParams) { try { - using (MySqlConnection connection = new MySqlConnection(mConnStr)) + using (NpgsqlConnection connection = new NpgsqlConnection(mConnStr)) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - using (MySqlCommand cmd = new MySqlCommand()) + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { @@ -217,7 +210,7 @@ namespace CnasSynchronusDAL return line; } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -226,11 +219,11 @@ namespace CnasSynchronusDAL catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -238,39 +231,39 @@ namespace CnasSynchronusDAL catch (Exception e) { AppLog.Error(e.Message); - throw e; + throw; } } /// - ///  用执行的数据库连接执行一个返回数据集的sql命令 + /// 用执行的数据库连接执行一个返回数据集的sql命令 /// /// /// - public static MySqlDataReader ExecuteReader(String sql) + public static NpgsqlDataReader ExecuteReader(String sql) { try { - //创建一个MySqlConnection对象 - using (MySqlConnection connection = new MySqlConnection(mConnStr)) + //创建一个NpgsqlConnection对象 + using (NpgsqlConnection connection = new NpgsqlConnection(mConnStr)) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - //创建一个MySqlCommand对象 - using (MySqlCommand cmd = new MySqlCommand()) + //创建一个NpgsqlCommand对象 + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, null); - MySqlDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection); + NpgsqlDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection); transaction.Commit(); cmd.Parameters.Clear(); return reader; } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -279,11 +272,11 @@ namespace CnasSynchronusDAL catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -291,7 +284,7 @@ namespace CnasSynchronusDAL catch (Exception e) { AppLog.Error(e.Message); - throw e; + throw; } } @@ -302,17 +295,17 @@ namespace CnasSynchronusDAL /// public static DataSet ExecuteDataSet(String sql) { - MySqlConnection connection = new MySqlConnection(mConnStr); + NpgsqlConnection connection = new NpgsqlConnection(mConnStr); try { - //创建一个MySqlConnection对象 + //创建一个NpgsqlConnection对象 using (connection) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - //创建一个MySqlCommand对象 - using (MySqlCommand cmd = new MySqlCommand()) + //创建一个NpgsqlCommand对象 + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { @@ -320,7 +313,7 @@ namespace CnasSynchronusDAL PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, null); AppLog.Error("===-3223-==="+ sql + mConnStr); - MySqlDataAdapter adapter = new MySqlDataAdapter(); + NpgsqlDataAdapter adapter = new NpgsqlDataAdapter(); adapter.SelectCommand = cmd; DataSet ds = new DataSet(); AppLog.Error("===-3223-==="+ sql + ds); @@ -333,7 +326,7 @@ AppLog.Error("===-3443-==="+ sql + ds); return ds; AppLog.Error("===-3553-==="+ sql + ds); } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -342,11 +335,11 @@ AppLog.Error("===-3553-==="+ sql + ds); catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -354,7 +347,7 @@ AppLog.Error("===-3553-==="+ sql + ds); catch (Exception e) { AppLog.Error(e.Message); - throw e; + throw; }finally { if (connection != null) @@ -372,12 +365,12 @@ AppLog.Error("===-3553-==="+ sql + ds); /// /// /// - public static DataTable ExecuteDataTable(string sqlText, params MySqlParameter[] parameters) + public static DataTable ExecuteDataTable(string sqlText, params NpgsqlParameter[] parameters) { DataTable dt = null; try { - using (MySqlDataAdapter adapter = new MySqlDataAdapter(sqlText, mConnStr)) + using (NpgsqlDataAdapter adapter = new NpgsqlDataAdapter(sqlText, mConnStr)) { dt = new DataTable(); adapter.SelectCommand.Parameters.AddRange(parameters); @@ -397,25 +390,25 @@ AppLog.Error("===-3553-==="+ sql + ds); /// /// /// - public static DataSet ExecuteDataSet(String sql, MySqlParameter[] cmdParams) + public static DataSet ExecuteDataSet(String sql, NpgsqlParameter[] cmdParams) { - MySqlConnection connection = new MySqlConnection(mConnStr); + NpgsqlConnection connection = new NpgsqlConnection(mConnStr); try { - //创建一个MySqlConnection对象 + //创建一个NpgsqlConnection对象 using (connection) { connection.Open(); - MySqlTransaction transaction = connection.BeginTransaction(); + NpgsqlTransaction transaction = connection.BeginTransaction(); - //创建一个MySqlCommand对象 - using (MySqlCommand cmd = new MySqlCommand()) + //创建一个NpgsqlCommand对象 + using (NpgsqlCommand cmd = new NpgsqlCommand()) { try { PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, cmdParams); - MySqlDataAdapter adapter = new MySqlDataAdapter(); + NpgsqlDataAdapter adapter = new NpgsqlDataAdapter(); adapter.SelectCommand = cmd; DataSet ds = new DataSet(); @@ -428,7 +421,7 @@ AppLog.Error("===-3553-==="+ sql + ds); return ds; } - catch (MySqlException e1) + catch (NpgsqlException e1) { try { @@ -437,11 +430,11 @@ AppLog.Error("===-3553-==="+ sql + ds); catch (Exception e2) { AppLog.Error(e2.Message); - throw e2; + throw; } AppLog.Error(e1.Message); - throw e1; + throw; } } } @@ -449,7 +442,7 @@ AppLog.Error("===-3553-==="+ sql + ds); catch (Exception e) { AppLog.Error(e.Message); - throw e; + throw; }finally { if (connection != null) @@ -469,7 +462,7 @@ AppLog.Error("===-3553-==="+ sql + ds); /// 命令类型例如 存储过程或者文本 /// 命令文本,例如:Select * from Products /// 执行命令的参数 - private static void PrepareCommand(MySqlCommand cmd, MySqlConnection conn, MySqlTransaction trans, CommandType cmdType, string cmdText, MySqlParameter[] cmdParms) + private static void PrepareCommand(NpgsqlCommand cmd, NpgsqlConnection conn, NpgsqlTransaction trans, CommandType cmdType, string cmdText, NpgsqlParameter[] cmdParms) { if (conn.State != ConnectionState.Open) conn.Open(); @@ -484,19 +477,18 @@ AppLog.Error("===-3553-==="+ sql + ds); if (cmdParms != null) { - foreach (MySqlParameter parm in cmdParms) + foreach (NpgsqlParameter parm in cmdParms) cmd.Parameters.Add(parm); } } - public static bool TestConnectMySql() + public static bool TestConnectPostgreSQL() { bool bIfSuccess = false; try { - //创建一个MySqlConnection对象 - using (MySqlConnection connection = new MySqlConnection(mConnStr)) + using (NpgsqlConnection connection = new NpgsqlConnection(mConnStr)) { connection.Open(); diff --git a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs index ed127f0..31ec6ff 100644 --- a/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs +++ b/CnasSynchronusDAL/DAL/PostgreSqlDAL.cs @@ -8,6 +8,7 @@ using CnasSynchronousCommon; using CnasSynchrousModel; using System.Reflection; using Devart.Common; +using Npgsql; namespace CnasSynchronusDAL { @@ -15,22 +16,24 @@ namespace CnasSynchronusDAL { public void CreateConnectString(string strIP, string strPort, string strName, string strUser, string strPwd) { - MySQLHelper.InitConnectionString(strIP, strPort, strName, strUser, strPwd); + PostgreSQLHelper.InitConnectionString(strIP, strPort, strName, strUser, strPwd); } public void CreateConnectString(string strConnectString) { - MySQLHelper.InitConnectionString(strConnectString); + PostgreSQLHelper.InitConnectionString(strConnectString); } //获取所有表单名称 public DataTable GetTableNames(string strName) { DataTable dt = new DataTable(); - string strSql = string.Format("SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='{0}'", strName); + + //string strSql = string.Format("SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='{0}'", strName); + string strSql = string.Format("SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_catalog='{0}' and table_schema='public'", strName); try { - dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; } catch (Exception ex) { @@ -56,8 +59,8 @@ namespace CnasSynchronusDAL try { AppLog.Error("===-222-===" + strTableName + strSql); - dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; - AppLog.Error("===-333-===" + strTableName + "MySQLHelper.ExecuteDataSet(strSql)" + dt); + dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; + AppLog.Error("===-333-===" + strTableName + "PostgreSQLHelper.ExecuteDataSet(strSql)" + dt); } catch (Exception ex) { @@ -77,7 +80,7 @@ namespace CnasSynchronusDAL string strSql = string.Format("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 '{0}'", strTableName); try { - dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; } catch (Exception ex) { @@ -155,11 +158,11 @@ namespace CnasSynchronusDAL foreach (DataRow dr in dt.Rows) { //插入参数值 - MySqlParameter[] parameters = new MySqlParameter[lstColumnName.Count]; + NpgsqlParameter[] parameters = new NpgsqlParameter[lstColumnName.Count]; int i = 0; foreach (var item in lstColumnName) { - parameters[i++] = new MySqlParameter(item, dr[item]); + parameters[i++] = new NpgsqlParameter(item, dr[item]); } //插入时发现已经在数据库中存在该值,则进行更新操作 int ifHavaValue = ExistSingleCnasData(lstKeyColumns, syncParamasInfos[0].TargetTable, dr, ref dtSelect); @@ -173,7 +176,7 @@ namespace CnasSynchronusDAL //构造更新语句 strUpdateSql = GetUpdateSql(lstColumnName, lstKeyColumns, syncParamasInfos[0].TargetTable, dr); //执行UpdateSql语句 - iReturn += MySQLHelper.ExecuteNonQuery(strUpdateSql, parameters); + iReturn += PostgreSQLHelper.ExecuteNonQuery(strUpdateSql, parameters); } else { @@ -189,7 +192,7 @@ namespace CnasSynchronusDAL else if (ifHavaValue == 0) { //执行InsertSQL语句 - iReturn += MySQLHelper.ExecuteNonQuery(strInsertSql, parameters); + iReturn += PostgreSQLHelper.ExecuteNonQuery(strInsertSql, parameters); } } } @@ -244,7 +247,7 @@ namespace CnasSynchronusDAL string strSql = string.Format("select * FROM macaddress WHERE MAC_ADDRESS='{0}'", strMac); try { - DataTable dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + DataTable dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; if (dt != null && dt.Rows.Count > 0) { bIfChecked = true; @@ -286,7 +289,7 @@ namespace CnasSynchronusDAL if (strSql != "") { - DataTable dt = MySQLHelper.ExecuteDataTable(strSql, new MySqlParameter[] { }); + DataTable dt = PostgreSQLHelper.ExecuteDataTable(strSql, new NpgsqlParameter[] { }); if (dt != null && dt.Rows.Count > 0) { bIfHaveValue = 1; @@ -307,7 +310,7 @@ namespace CnasSynchronusDAL string strSql = string.Format("select * FROM user WHERE userid='{0}' and password='{1}'", strUserName, strPwd); try { - dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; } catch (Exception ex) { @@ -318,7 +321,7 @@ namespace CnasSynchronusDAL public bool LinkCnasTest() { - return MySQLHelper.TestConnectMySql(); + return PostgreSQLHelper.TestConnectPostgreSQL(); } /// @@ -392,12 +395,16 @@ namespace CnasSynchronusDAL DataTable dtReturn = new DataTable(); try { - string strSql = ""; + +// SELECT* +//FROM cnas.public.stu +//WHERE "InTime" > TO_DATE('2022-01-01', 'YYYY-MM-DD'); + string strSql = ""; if (strViewName == strTableName && !string.IsNullOrWhiteSpace(strViewName)) strSql = strViewSql + $" where {strDateColumn} >convert( '{strDate}',datetime)"; else - strSql = $"select * from {strDBName}.{strTableName} where {strDateColumn} >convert( '{strDate}',datetime)"; - DataTable dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + strSql = $"select * from {strDBName}.public.{strTableName} where {strDateColumn} >convert( '{strDate}',datetime)"; + DataTable dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; Dictionary dictFiled = GetSpecialOperaField(strDBName, strTableName); if (dictFiled.Count > 0) @@ -443,7 +450,7 @@ namespace CnasSynchronusDAL try { - DataTable dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + DataTable dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; AppLog.Info($"执行语句获得最晚时间:{strSql}"); if (dt != null && dt.Rows.Count == 1) { @@ -474,7 +481,7 @@ namespace CnasSynchronusDAL try { string sql = string.Format("SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='{0}' and table_schema='{1}'", strTableName, strDBName); //查询字符串 - dt = MySQLHelper.ExecuteDataSet(sql).Tables[0]; + dt = PostgreSQLHelper.ExecuteDataSet(sql).Tables[0]; foreach (DataRow dr in dt.Rows) { @@ -565,7 +572,7 @@ namespace CnasSynchronusDAL DataTable dt = new DataTable(); try { - dt = MySQLHelper.ExecuteDataSet(strSql).Tables[0]; + dt = PostgreSQLHelper.ExecuteDataSet(strSql).Tables[0]; } catch (Exception ex) { @@ -584,7 +591,7 @@ namespace CnasSynchronusDAL try { - return MySQLHelper.ExecuteNonQuery(strSql) > 0; + return PostgreSQLHelper.ExecuteNonQuery(strSql) > 0; } catch (Exception ex) { diff --git a/CnasSynchronusDAL/PostgreSqlDAL.cs b/CnasSynchronusDAL/PostgreSqlDAL.cs deleted file mode 100644 index c379d5d..0000000 --- a/CnasSynchronusDAL/PostgreSqlDAL.cs +++ /dev/null @@ -1,185 +0,0 @@ -using System; -using System.Data; -using Npgsql; -using CnasSynchrousModel; - -namespace CnasSynchronusDAL -{ - public class PostgreSqlDAL : IDAL - { - private string connectionString; - - public PostgreSqlDAL(InstrumentDataSourceInfo dataSourceInfo) - { - connectionString = $"Server={dataSourceInfo.Host};Port={dataSourceInfo.Port};Database={dataSourceInfo.ServerName};User Id={dataSourceInfo.UserId};Password={dataSourceInfo.UserPwd};"; - } - - public bool TestConnection() - { - try - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - return true; - } - } - catch - { - return false; - } - } - - public DataTable GetDataTable(string sql) - { - DataTable dt = new DataTable(); - try - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn)) - { - using (NpgsqlDataAdapter adapter = new NpgsqlDataAdapter(cmd)) - { - adapter.Fill(dt); - } - } - } - } - catch (Exception ex) - { - throw new Exception($"获取数据失败:{ex.Message}"); - } - return dt; - } - - public DataSet GetDataSet(string sql) - { - DataSet ds = new DataSet(); - try - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn)) - { - using (NpgsqlDataAdapter adapter = new NpgsqlDataAdapter(cmd)) - { - adapter.Fill(ds); - } - } - } - } - catch (Exception ex) - { - throw new Exception($"获取数据失败:{ex.Message}"); - } - return ds; - } - - public int ExecuteNonQuery(string sql) - { - try - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn)) - { - return cmd.ExecuteNonQuery(); - } - } - } - catch (Exception ex) - { - throw new Exception($"执行SQL失败:{ex.Message}"); - } - } - - public object ExecuteScalar(string sql) - { - try - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn)) - { - return cmd.ExecuteScalar(); - } - } - } - catch (Exception ex) - { - throw new Exception($"执行SQL失败:{ex.Message}"); - } - } - - public bool ExecuteTransaction(string[] sqlArray) - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - using (NpgsqlTransaction transaction = conn.BeginTransaction()) - { - try - { - foreach (string sql in sqlArray) - { - using (NpgsqlCommand cmd = new NpgsqlCommand(sql, conn, transaction)) - { - cmd.ExecuteNonQuery(); - } - } - transaction.Commit(); - return true; - } - catch (Exception ex) - { - transaction.Rollback(); - throw new Exception($"执行事务失败:{ex.Message}"); - } - } - } - } - - public void BulkCopy(DataTable sourceData, string targetTable) - { - try - { - using (NpgsqlConnection conn = new NpgsqlConnection(connectionString)) - { - conn.Open(); - - // 构建COPY命令 - using (var writer = conn.BeginBinaryImport($"COPY {targetTable} FROM STDIN (FORMAT BINARY)")) - { - foreach (DataRow row in sourceData.Rows) - { - writer.StartRow(); - for (int i = 0; i < sourceData.Columns.Count; i++) - { - if (row[i] == DBNull.Value) - writer.WriteNull(); - else - writer.Write(row[i]); - } - } - writer.Complete(); - } - } - } - catch (Exception ex) - { - throw new Exception($"批量复制数据失败:{ex.Message}"); - } - } - - public void Dispose() - { - // 清理资源 - GC.SuppressFinalize(this); - } - } -} \ No newline at end of file diff --git a/CnasSynchronusDAL/packages.config b/CnasSynchronusDAL/packages.config index f877a17..0769cf1 100644 --- a/CnasSynchronusDAL/packages.config +++ b/CnasSynchronusDAL/packages.config @@ -7,7 +7,7 @@ - + diff --git a/CnasSynchrousModel/InstrumentDataSourceInfo.cs b/CnasSynchrousModel/InstrumentDataSourceInfo.cs index 98946c4..fc66e51 100644 --- a/CnasSynchrousModel/InstrumentDataSourceInfo.cs +++ b/CnasSynchrousModel/InstrumentDataSourceInfo.cs @@ -18,7 +18,8 @@ namespace CnasSynchrousModel MySQL, Oracle, FoxPro, - TXT + TXT, + PostgreSQL } public enum PathType diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe index b9fdf3f..38c4d20 100644 Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll index fcfcb9c..d88aba9 100644 Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll index 2655c9b..8b3ecfd 100644 Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ diff --git a/dll/CnasSynchrousModel.dll b/dll/CnasSynchrousModel.dll index 66066bd..08d8f75 100644 Binary files a/dll/CnasSynchrousModel.dll and b/dll/CnasSynchrousModel.dll differ diff --git a/dll/Data/SyncInStrumentData.mes b/dll/Data/SyncInStrumentData.mes index b7f8527..a735d41 100644 --- a/dll/Data/SyncInStrumentData.mes +++ b/dll/Data/SyncInStrumentData.mes @@ -1 +1 @@ -/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCW1I/HueTuOJOcD40MLI2D0tMGBACgOQKJ6uY/zxinGkLrJDCtdmDmvCeR1n1Hv+sdVxRY8tWYGGLijvZWhOzTx+NIPsCCPxG2JhtyMdOmPXaw9rO2jOmxYYzqi+uTe4RSnvmlg2X5u1T39xZueFOnurq+m5Q3v1PRYgqU2LlZXdR+P4SwRnjM07xrUsBgEyB6DIJlrLWpuf3zIYTNaGpbYh05X3ZhOiNj8juV3JJq6d2470Dy3JO+8Da0D+OfUW0n6fu4esJJQHORrCwgYOeUjWT8DPVw/8V2omywNNCXyVj6clZK4c6PxOXIiljoTsDTSG5/kW/q6AyHs8QBYgztZyH1ZLGXPh2bw9Dboh0f1puI6Q7GMJvFGQ3x/tXzTEAcYVZbERE/CnwBTQbQR4uc69iJK1F0wSBu+2mtkt1jEet6cenkkjED90uhoA3+89aKypLMRjtk297xmTTRlkUYI7OeqawigkILL+xLCr+vlDPIexGH2XdVWjyZ1bXRQcO8GLuqLsNZ/MYPvW9dIwPaIcXsyHyGbkm5R3gX5BEYEP3kc/63IR7evttDERao19zzgF2ctFkm2ZOjldqObliq+O73Qbmt2RZPXLb+a6/0X6Vamc9HdW5OijYJgTmFauGX8g0LmNxRJz6ZJgeyieUxE2ssl012X1ZCas0LVZLwG9eXzts4l5ZY1npgVMUReA74bep+5zHWSavMb199n6lg8QO8E8lQve2dmrIm9iQ2MNlnaUW5jFJIwRzo2uHm4Eztk2sjlR016WZSqdqMMesizpFhUmC398KT5v96B21XIqPoj4iOR7CrbWcsRAyrU4MWoOu2srGA3SsfphvPF6pMRlS3VlXoX38s7sTKnMBTg84X6WPs3/VRaZfCFRArBQbYi5Umfxu7Q+x5lYArSCpDMQXTzprjM1KsS38U8QCbonh2+KpcWt9XBu3zorrjSH1PvHEIAZ/LIViL/csgPGrkk/OzMx8g5W5PrTK99g/F/OQtPo6OFsAD1jp1VRwFlUX21EW6amODH9ZG8o0zpHbXHF4OMe69Qo3ATWydyFN35QmIQ2mTOC3fygI3HyQX+9j7QB8XqkGZtEYlf3F/igf6pUn2ke3hNOwPEiLK4glBDFehdvORKC1t1tz9Q6m86K8nGW+l56iF94v5j0aIGQ39k5UNE7zrV1CimfxAR938VAPizVAi6B3qSJFlbE68/GuqpehPt0YQKF54GL6d6yfR4ZqSnM3gzu8Kbk7RnWiKwfdPGO8+aKaEEZ3ySfHvnaQDhdXGhTN3e5x13t8esJcXw4BqHFzbcg0cuWbXbon9prCT/uBC7a5jb0R9wP37Sy43Sjl/HC6u+tcr9b5iEwsxGHMGLQphj9Jsx2XK3WMBpTYJCRX/+ZQ3JXwuAPnsXGBR43L71MFxy71wIg54N4Ygqy1Fa1XqJjXGsyGChPbf+4EHoS7zvWOEqeh/5rhms0xHtO+UcjMk68jZ+bFaqBh1rm72xpJFsqghHvP1H2C5QwNTVmZr+MLDdDiLsyXFuZCxiuK4Pibcb/3kCirgIJHMRlh4LGRhg/pc1qqEIY0sGA8hWPur13E9zhEPS0GE2S8tpRuXAV9OyQmv2I3i3oK53nY5qLD5SFXtcjSvUIRJ2RUns2z8jxUBjHsm6tab2GqfX9ayUIf1iL8/nsEjg2OGR5i6q1beccL2lLDv4IlLoftpTb9Z/bNa5GF2MBi7Js6/6R5oM35/yldIP3Lf4QGJbZz3Eo9ik0nuUoZzZ8hIDVTILbJP07R4kZvI+TjY7y7kSMjiZCSoxu5FkElff654M6wOLVeQMCMknV8VMKNlzyjAsBprx/4FKSmoJZUM5vlc5K4nqZxNIIn7MJvxbhVuanB8Y0uxN2aXx63V42yjPywFaatyn55Zwh/uDTN45vqafvSeoKrqpXVtnak0voVIN3txRa5zDZ8sshi1dx/UKo5N7GeSbXYKmmPb0GXSPooXE5zvbaKAkiqOoL4rfIjd90LtPErCTXmMiERYlbKP+V1KrmE1eUrWKwpMA8bu21DEKZSh+KHxXoafI+6zPUU3+dHsfdQp21HbbL1IJ3xD5KDBXrVH0xgWJlyBu2bqXIB0SXlhXx9/rQqs+45VJp40i6zDNB6/HDuFdrG7Nyby4p3hO/pIl+2cSfEDcF8UXov+plI8t+lAZ2qA+rT22z2E0n/IONSzSFA9Bm5BqguraHwR6Y+dAUVzAX5XBHokIQu2y5f+0zuTvW5gV37pmWnQZ/y4T0ik4QP9KmO+oHIytRUOZBGZ42EdSH/8g2WyyA+Kjxk6e1CqRoDMK9mc6eTdUQ751JmpwCmG32AKGie48GAsntTlRqtKX6QjM7tQKpBJKrjwnb17iKU5av1P+MWN827+sICxK04Kvj9jmahfoxFb5C00CFRnYsj0inZe+TxEK/U45UQpJLAqYNGpmi3fyF4P7wR9WgzyrdfK1uF8MV+rEhuhZj6JkGT4mxeaI6/U9FIg8DuBq3YMUP6NLhV2n5q3vxNokiM0rxthVjdGjwCT/IxVxuJ3LcWjO7cbVev3erPKxeRbiPBp55eIdjyJto5ZeakwB76JoXqlF3Wqw8LnWKk7XS2rJ8v6xMBAQqnHk1ViZ8gQC4bPIXbebNL3nXWT/1ZiAnIO2ydnFeAcFpjIlfur6cSC1N2dqKHb9S7FdIbps+iJjCYFFvtLPRJT2IJVvNXmg12SD3bum8PCMajhK/6RUEQh3aIcUdifwbSYtwN+BW0zTtCHsef9jxwdAv5DijTqGf7OLpPtKWGfhVWcNNB7nb+yVEVwFiKc1CKV46VdFF+0rbbf42Ve1VvN9FpKi/1lRBlmAPaQWmxDqtcJ7t2OH0IlrjsB5rtq49lLklkl/D/v2OraKLpFJe2frCCmksWZKll/YVsfRmhyZtxecSM/23eMGBsB9KoxmTBa6ZbhYJ6rBrnji3btReDb9FO0U17SWVSlwDvK8itKPMe4mhcZsTKSMi/X/I4r5QtKZUEU/SQmLaDa8gM2IlEEOA5TtIKFW3nm8Ki2jqoqRbbWs/he9d4shcNw7desOAEN4/Xte50/K+EUHV5PLLilSuCxmFxz6r9a+wmHm8nNb/EK2b80VmWfli3MLaXbe+OJ1RJiETpE9e8DYFTcvFx6ucrMwME4ohXG6yM/lJs8vOOT9WlraZi7I/0IWZz+u3QEkNaA+U2lbX15WlnEkCjYWHNvjRWICRXeOFfAt3UWS/JwWmEOWEtIIp9ZDe9/VZ6x5oANNdYV5RCMIMOahhZFyRXKt4kO4utWJfjnYqp1atGqt5DiF2Ea \ No newline at end of file +/4OjQUpsGecll0xqHycz/L+lPK0LSkds3kpbfxPz8zCW1I/HueTuOJOcD40MLI2D0tMGBACgOQKJ6uY/zxinGkLrJDCtdmDmvCeR1n1Hv+sdVxRY8tWYGGLijvZWhOzTx+NIPsCCPxG2JhtyMdOmPXaw9rO2jOmxYYzqi+uTe4RSnvmlg2X5u1T39xZueFOnurq+m5Q3v1PRYgqU2LlZXdR+P4SwRnjM07xrUsBgEyB6DIJlrLWpuf3zIYTNaGpbYh05X3ZhOiNj8juV3JJq6d2470Dy3JO+8Da0D+OfUW0n6fu4esJJQHORrCwgYOeUjWT8DPVw/8V2omywNNCXyVj6clZK4c6PxOXIiljoTsDTSG5/kW/q6AyHs8QBYgztZyH1ZLGXPh2bw9Dboh0f1puI6Q7GMJvFGQ3x/tXzTEAcYVZbERE/CnwBTQbQR4uc69iJK1F0wSBu+2mtkt1jEet6cenkkjED90uhoA3+89aKypLMRjtk297xmTTRlkUYI7OeqawigkILL+xLCr+vlDPIexGH2XdVWjyZ1bXRQcO8GLuqLsNZ/MYPvW9dIwPaIcXsyHyGbkm5R3gX5BEYEP3kc/63IR7evttDERao19zzgF2ctFkm2ZOjldqObliq+O73Qbmt2RZPXLb+a6/0X6Vamc9HdW5OijYJgTmFauGX8g0LmNxRJz6ZJgeyieUxE2ssl012X1ZCas0LVZLwG9eXzts4l5ZY1npgVMUReA74bep+5zHWSavMb199n6lg8QO8E8lQve2dmrIm9iQ2MNlnaUW5jFJIwRzo2uHm4Eztk2sjlR016WZSqdqMMesizpFhUmC398KT5v96B21XIqPoj4iOR7CrbWcsRAyrU4MWoOu2srGA3SsfphvPF6pMRlS3VlXoX38s7sTKnMBTg84X6WPs3/VRaZfCFRArBQbYi5Umfxu7Q+x5lYArSCpDMQXTzprjM1KsS38U8QCbonh2+KpcWt9XBu3zorrjSH1PvHEIAZ/LIViL/csgPGrkk/OzMx8g5W5PrTK99g/F/OQtPo6OFsAD1jp1VRwFlUX21EW6amODH9ZG8o0zpHbXHF4OMe69Qo3ATWydyFN35QmIQ2mTOC3fygI3HyQX+9j7QB8XqkGZtEYlf3F/igf6pUn2ke3hNOwPEiLK4glBDFehdvORKC1t1tz9Q6m86K8nGW+l56iF94v5j0aIGQ39k5UNE7zrV1CimfxAR938VAPizVAi6B3qSJFlbE68/GuqpehPt0YQKF54GL6d6yfR4ZqSnM3gzu8Kbk7RnWiKwfdPGO8+aKaEEZ3ySfHvnaQDhdXGhTN3e5x13t8esJcXw4BqHFzbcg0cuWbXbon9prCT/uBC7a5jb0R9wP37Sy43Sjl/HC6u+tcr9b5iEwsxGHMGLQphj9Jsx2XK3WMBpTYJCRX/+ZQ3JXwuAPnsXGBR43L71MFxy71wIg54N4Ygqy1Fa1XqJjXGsyGChPbf+4EHoS7zvWOEqeh/5rhms0xHtO+UcjMk68jZ+bFaqBh1rm72xpJFsqghHvP1H2C5QwNTVmZr+MLDdDiLsyXFuZCxiuK4Pibcb/3kCirgIJHMRlh4LGRhg/pc1qqEIY0sGA8hWPur13E9zhEPS0GE2S8tpRuXAV9OyQmv2I3i3oK53nY5qLD5SFXtcjSvUIRJ2RUns2z8jxUBjHsm6tab2GqfX9ayUIf1iL8/nsEjg2OGR5i6q1beccL2lLDv4IlLoftpTb9Z/bNa5GF2MBi7Js6/6R5oM35/yldIP3Lf4QGJbZz3Eo9ik0nuUoZzZ8hIDVTILbJP07R4kZvI+TjY7y7kSMjiZCSoxu5FkElff654M6wOLVeQMCMknV8VMKNlzyjAsBprx/4FKSmoJZUM5vlc5K4nqZxNIIn7MJvxbhVuanB8Y0uxN2aXx63V42yjPywFaatyn55Zwh/uDTN45vqafvSeoKrqpXVtnak0voVIN3txRa5zDZ8sshi1dx/UKo5N7GeSbXYKmmPb0GXSPooXE5zvbaKAkiqOoL4rfIjd90LtPErCTXmMiERYlbKP+V1KrmE1eUrWKwpMA8bu21DEKZSh+KHxXoafI+6zPUU3+dHsfdQp21HbbL1IJ3xD5KDBXrVH0xgWJlyBu2bqXIB0SXlhXx9/rQqs+45VJp40i6zDNB6/HDuFdrG7Nyby4p3hO/pIl+2cSfEDcF8UXov+plI8t+lAZ2qA+rT22z2E0n/IONSzSFA9Bm5BqguraHwR6Y+dAUVzAX5XBHokIQu2y5f+0zuTvW5gV37pmWnQZ/y4T0ik4QP9KmO+oHIytRUOZBGZ42EdSH/8g2WyyA+Kjxk6e1CqRoDMK9mc6eTdUQ751JmpwCmG32AKGie48GAsntTlRqtKX6QjM7tQKpBJKrjwnb17iKU5av1P+MWN827+sICxK04Kvj9jmahfoxFb5C00CFRnYsj0inZe+TxEK/U45UQpJLAqYNGpmi3fyF4P7wR9WgzyrdfK1uF8MV+rEhuhZj6JkGT4mxeaI6/U9FIg8DuBq3YMUP6NLhV2n5q3vxNokiM0rxthVjdGjwCT/IxVxuJ3LcWjO7cbVev3erPKxeRbiPBp55eIdjyJto5ZeakwB76JoXqlF3Wqw8LnWKk7XS2rJ8v6xMBAQqnHk1ViZ8gQC4bPIXbebNL3nXWT/1ZiAnIO2ydnFeAcFpjIlfur6cSC1N2dqKHb9S7FdIbps+iJjCYFFvtLPRJT2IJVvNXmg12SD3bum8PCMajhK/6RUEQh3aIcUdifwbSYtwN+BW0zTtCHsef9jxwdAv5DijTqGf7OLpPtKWGfhVWcNNB7nb+yVEVwFiKc1CKV46VdFF+0rbbf42Ve1VvN9FpKi/1lRBlmAPaQWmxDqtcJ7t2OH0IlrjsB5rtq49lLklkl/D/v2OraKLpFJe2frCCmksWZKll/YVsfRmhyZtxecSM/23eMGBsB9KoxmTBa6ZbhYJ6rBrnji3btReDb9FO0U17SWVSlwDvK8itKPMe4mhcZsTKSMi/X/I4r5QtKZUEU/SQmLaDa8gM2IlEEOA5TtIKFW3nm8Ki2jqoqRbbWs/he9d4shcNw7desOAEN4/Xte50/K+EUHV5PLLilSuCxmFxz6r9a+wmHm8nNb/EK2b80VmWfli3MLaXbe+OJ1RJiETpE9e8DYFTcvFx6ucrMwME4ohXG6yM/lJs8vOOT9WlraZi7I/0IWZz+u3QEkNaA+U2lbX15WlnEkCjYWHNvjRWICRXeOFfAt3UWS/JwWmEOWEtIIp9ZDe9/VZ4tTjUfcJfLr10TJ0AAod6jIb+H2cMekTh0BxB+kpqKrf0wjWFUTP9hTwpn1W6vgH7qlqzGo8YzyXzzcBvJ2ZqXYeS14guNaIu+SiuLbZUxQjyo+K5JpZ7zCuQ5DVtHr0EjQnTcH0eGfhfqe3HIVLUIOqrlbksXgngAi2aTFfBfmFp4ePebUxfU9vu0m0EGEe4vEmz1ezO2IMW4AH4bYFLhXJmySjKxzpcbngb7bpJP23nn3JbQy13DmbQwX2tTzGi+WBfya31EmkOJzTaHqGRCpCydGU7F1IEkXL5BdqY1Yj16ydhoAb4gSuXpmeBPs78AKVS/4QOmfh9BUw47ihC6PluuujuExe6gblixIsFkB5oavrRV8Hk+b19iA6lg6CzmxMTzy+wXw3ExPTOcm1EbrvIqQT0wB6BCRJ3lXQCMLNJrwZVCAhT57iGyyzH7DiaGYOfg+0GhA96FjT4t0J0a38C87mp2fDPB+M/Js1dRW0Aw/XkEfvXz23o5kx5JIF2IYgQG5w6VPR38JZkeHi4uLJySc40KGFZAFXbp9ju1cGVSPUAY/SdsVvB4xylhipkPI09ddteJU9/Dk2DaFCwi7tqj6piop9hhKmkJs8d+xq0DZjatvj4U79npgUe/mubYDRrzihADZ7xhKC6oqqdSZlxicp94bsx1KrF2+/2Dr49Xg1BVQJxcT5YmRUO4n4o1wFdZ28NTEUjjuMi0e9r6iONBNXYCY3xPegttnac8RZMlJ/pL4MTKMXF9DcNs/buxNmbZLQ+9Bx9zxST5C37iQ7ax78WJmRPwXv4X/vA5cyEPGMhh9tLPmoRnTLS0tEKBDi1UU9YLajfJtpvNHtpWqxM8V0dB3PdaMUbM4b4EjiRg0JgoxgsF2+EQ0F3Xi8Eklo2k3cKBWJqqDS6g8XSsGkF0KuNBILCmCjWD3hRpdaro+HzXIdBM5d/L5mP6kPgxEWNmfw8n0GGhIUfbAg641vTtYi2pCz1PYfZtf4X3ubm0zyyg5E50979kYa1Aju74eqJ+AcVmEB0488s0kTlGpqMwPqPf31GYnOVe+fSK6FAjTS1ZMFEGllQr9H/jm82i1MUztH5cfWTgKhYcLdScnkd2/TRZNPbTiTw1QdD6DVToASz5RyWDamxS9naht46FeOLp6Y2wjj9/d3tGOj/HMbsv6KajpKdxXYH5z3ZxoXSufPAJ4g0e3fc7rnyWiF5hC3Wn625W2Z7wk7DCE76e3yqM2sAKdqCngBu0SFQp2jnJ/4qlerIAZjEOHONRoQ94IyyoO/SJrQonCBNIVz4H8zT0gv1cBr4JFS5B3SHMOk0dY3cMSK89W3K9q8DfRZYpG3LGoIl2mkaadayjyS2abBtkY0s2ZIBDC0ZJu1JbZ8etpRNXieoULyRyrIjS/5SQk96g8tQDycLd74fBUpbnwgbXA0fCAfcbgsmDu8KIHSCv+uOqk7t0zdkugqydC1N8OuxqLYzJ4P7T+dNXQGrE9FEi3odUowQ7QvKaS3YRa1CTzKGt+jE9J3udMxh+u1BQZl8J4ksSWTwevgUU2tDr3+1718bEIGMkdks6d1rmRYjtb6IxZ3ucVNSEtstVzUdkap1+r4U7yveL5GiGw57dpgg2rZOvMu3uqTf7nIbyZ+YBo6KkPy3lfOAnoatOCKhL7GEy8x8RPOs62DJKWtoSzRXAXse+tE5Jz9VXQPJqbkk44+A2R6/5mrqqE/Cfz4iQ4FyXIBbKx4p/dWcf6kC3BB6TX97DhYN3sLqftY+QMqF7ZBKxb2qjJn/M/CFMVcC7k2rVLtboFpkZqf5Fm/Ih10rJScUJtyt0gFKwy69hDxqvzX5gg92yj38g0VY14/w= \ No newline at end of file diff --git a/dll/ErrorLog/20250214.txt b/dll/ErrorLog/20250214.txt index 5bcebf2..33e086e 100644 --- a/dll/ErrorLog/20250214.txt +++ b/dll/ErrorLog/20250214.txt @@ -321,3 +321,995 @@ ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet ¼ʱ䣺2025-02-14 09:50:27,623 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,397 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,399 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,425 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:35,425 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,426 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,427 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,428 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,462 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,493 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,496 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,498 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,498 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,504 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,507 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,518 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,518 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,550 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,552 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,553 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,553 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,559 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,582 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:35,583 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,584 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,587 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,588 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,610 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,612 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,613 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,613 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:35,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:35,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:35,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,617 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:35,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:49,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,233 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:49,234 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,235 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:49,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,238 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,240 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,289 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:49,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:49,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,293 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:49,293 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,352 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,353 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:53,354 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,354 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,355 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,355 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,357 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,359 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,390 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,392 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,392 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,403 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,404 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,404 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:53,404 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,405 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,432 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,434 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,462 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,463 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,464 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,470 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,470 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:38:53,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,510 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,511 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,512 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,512 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:38:53,515 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:38:53,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,516 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:38:53,517 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:41:05,070 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Connection unexpectedly terminated. +¼ʱ䣺2025-02-14 11:45:38,893 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,904 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,925 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,927 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:45:38,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:38,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,931 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,931 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:38,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,965 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:45:38,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:38,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,996 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,997 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:38,997 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,000 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,006 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,006 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:45:39,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,019 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,020 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,048 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,049 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,059 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,060 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,091 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:45:39,092 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,093 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,094 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,094 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,099 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,100 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,101 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,121 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,123 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,123 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:39,126 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:39,127 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:44,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,927 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:45:44,928 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:44,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,929 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,930 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,930 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:44,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,932 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,934 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,968 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:45:44,969 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,970 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:44,973 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:44,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,974 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,975 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,975 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:44,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,984 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:45:44,984 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:44,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,985 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,986 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,986 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:44,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:44,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:44,990 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,024 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,027 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:45,031 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:45,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,032 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,033 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,033 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:45,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,042 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,042 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:45:45,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:45,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,049 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,050 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,051 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,080 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:45:45,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,082 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:45:45,085 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:45:45,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:45:45,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:47:59,891 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Connection unexpectedly terminated. +¼ʱ䣺2025-02-14 14:19:42,469 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,502 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,503 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,504 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:19:42,505 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,506 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,508 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,508 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,544 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,548 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,573 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,575 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,578 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,578 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,582 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,584 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,585 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,586 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,586 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,593 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:19:42,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,595 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,601 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,633 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,640 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,641 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,642 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,642 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,660 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,661 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,663 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,663 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,666 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,667 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,694 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,696 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,697 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,697 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:19:42,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:19:42,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:19:42,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,704 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:19:42,705 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:31,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:31,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:31,946 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:20:31,948 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:31,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:31,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:31,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,954 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:31,955 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,012 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,015 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,020 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,022 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,040 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,042 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,044 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,112 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,115 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,119 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,121 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,122 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,122 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:20:32,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,135 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,138 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,140 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,175 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,178 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,179 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:20:32,185 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:20:32,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:20:32,188 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,682 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,708 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,709 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,710 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:42:19,710 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,714 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,714 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,746 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,748 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,749 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,788 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,790 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,792 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,792 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,800 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,801 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,803 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,804 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,804 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,814 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:42:19,815 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,817 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,821 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,824 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,868 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,870 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,871 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,874 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,875 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,876 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,885 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,887 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,888 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,888 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:42:19,888 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,889 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,899 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,900 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,937 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,938 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,939 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,939 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:42:19,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:42:19,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:42:19,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:42:19,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:43:15,689 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:43:15,915 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144315xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:43:33,896 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:43:33,964 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144333xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:43:38,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,012 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,014 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:43:38,014 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:43:38,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,016 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,017 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,017 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:43:38,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,021 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,024 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,084 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,086 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:43:38,087 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:44:01,073 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:44:01,130 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144401xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:44:14,670 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:44:14,730 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14144414xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:45:39,181 ߳ID:[1]- :MySQLHelper :TestConnectMySql Ϣ:Connection unexpectedly terminated. +¼ʱ䣺2025-02-14 14:57:03,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,343 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,366 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,367 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,368 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:57:03,369 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,370 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,372 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,372 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,418 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,424 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,425 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,456 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,458 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,460 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,461 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,468 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,477 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,478 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:57:03,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,479 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,483 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,520 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,522 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,523 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,523 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,529 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,530 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,531 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,554 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:57:03,555 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,556 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,558 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,559 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,560 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,588 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,590 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:03,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:03,596 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:13,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,684 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 14:57:13,685 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,687 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:13,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,691 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,692 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,693 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,755 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 14:57:13,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,757 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,758 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,758 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:13,763 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 14:57:13,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 14:57:13,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,765 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,766 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 14:57:13,766 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 14:57:44,495 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:57:44,603 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145744xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:58:22,567 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:58:22,623 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145822xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:58:30,738 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:58:30,802 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145830xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 14:58:32,836 ߳ID:[1]- :RemoteFileCopy :CopyFileFromRemote Ϣ:δȷýԶ +¼ʱ䣺2025-02-14 14:58:32,896 ߳ID:[1]- :ExcelDAL :ReadExcelTableNameToTable Ϣ:'C:\A_Code\developCnas\CNAS\dll\Cache\2025\2\14145832xls.xls'һЧ· ȷ·ƴдǷȷԼǷӵļŵķ +¼ʱ䣺2025-02-14 15:00:27,891 ߳ID:[1]- :TXTInstrumentData :.ctor Ϣ:·ʽϷ +¼ʱ䣺2025-02-14 15:01:05,554 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:01:05,555 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:01:05,556 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:01:05,815 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:01:05,889 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:02:03,754 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:02:03,754 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:02:03,754 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:02:03,818 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:02:03,871 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:05:59,757 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:05:59,759 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:05:59,760 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:05:59,823 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:05:59,881 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:24,859 ߳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-14 15:08:24,863 ߳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-14 15:08:24,864 ߳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-14 15:08:24,968 ߳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-14 15:08:25,029 ߳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-14 15:08:32,926 ߳ID:[1]- :PostgreSqlDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 15:08:32,927 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 15:08:32,927 ߳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-14 15:08:32,927 ߳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-14 15:08:32,927 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,013 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,104 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,104 ߳ID:[1]- :PostgreSqlDAL :GetTableStruct Ϣ:===-333-===stuPostgreSQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 15:08:33,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:33,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:33,110 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,114 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,115 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,247 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 15:08:33,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:33,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:33,249 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,250 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:33,250 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 15:08:38,183 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===safetyrecordSELECT * FROM safetyrecord Where 0=1 +¼ʱ䣺2025-02-14 15:08:38,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:38,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:38,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:38,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:38,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM safetyrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:38,189 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===safetyrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 15:08:40,650 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 15:08:40,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:40,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:08:40,652 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:40,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:40,653 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 15:08:40,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 15:11:06,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:11:06,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:11:06,157 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:06,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:06,182 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:11:00',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:06,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:11:06,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:11:06,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:06,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:06,188 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:12,048 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:11:12,049 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:11:12,049 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:11:12,368 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu" + +POSITION: 15 +¼ʱ䣺2025-02-14 15:11:12,383 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu" + +POSITION: 15 +¼ʱ䣺2025-02-14 15:11:12,397 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42P01: ϵ "cnas.stu" + +POSITION: 15 +¼ʱ䣺2025-02-14 15:13:33,522 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:13:33,522 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:13:33,522 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.STU where INTIME >convert( '2025-02-04 15:11:11',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:13:33,715 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu" + +POSITION: 15 +¼ʱ䣺2025-02-14 15:13:33,731 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42P01: ϵ "cnas.stu" + +POSITION: 15 +¼ʱ䣺2025-02-14 15:14:11,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:14:11,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:14:11,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:11,291 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:11,292 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:14:11',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:11,294 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:14:11,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:14:11,295 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:11,296 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:11,297 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:13,939 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:14:12',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:14:13,940 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:14:12',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:14:13,940 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:14:12',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:14:14,253 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 37 +¼ʱ䣺2025-02-14 15:14:14,268 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 37 +¼ʱ䣺2025-02-14 15:14:14,278 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime" + +POSITION: 37 +¼ʱ䣺2025-02-14 15:29:52,690 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:29:52,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:29:52,712 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:52,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:52,752 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===select * from test.STU where INTIME >convert( '2025-02-04 15:29:52',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:52,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:29:52,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 15:29:52,756 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:52,759 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:52,760 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='STU' and table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:55,851 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3113-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:29:54',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:29:55,851 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:29:54',datetime)Server=112.33.111.160;Port=5432;Database=cnas;User Id=postgres;Password=Auseft@2025qwer; +¼ʱ䣺2025-02-14 15:29:55,851 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:===-3223-===select * from cnas.public.STU where INTIME >convert( '2025-02-04 15:29:54',datetime)System.Data.DataSet +¼ʱ䣺2025-02-14 15:29:56,102 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 37 +¼ʱ䣺2025-02-14 15:29:56,117 ߳ID:[1]- :PostgreSQLHelper :ExecuteDataSet Ϣ:42703: ֶ "intime" + +POSITION: 37 +¼ʱ䣺2025-02-14 15:29:56,126 ߳ID:[1]- :PostgreSqlDAL :GetDataByDateColumn Ϣ:42703: ֶ "intime" + +POSITION: 37 diff --git a/dll/ErrorLog/20250214.txt20250214.txt b/dll/ErrorLog/20250214.txt20250214.txt new file mode 100644 index 0000000..d449d0c --- /dev/null +++ b/dll/ErrorLog/20250214.txt20250214.txt @@ -0,0 +1,96 @@ +¼ʱ䣺2025-02-14 11:59:02,797 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,806 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,807 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,830 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:59:02,830 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,831 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,833 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,833 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,856 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,861 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,894 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,895 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,896 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,897 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,900 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,901 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,902 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,902 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,909 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,910 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:59:02,910 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,912 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,912 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,920 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,949 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,950 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,960 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,962 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,977 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,978 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,979 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, ) +¼ʱ䣺2025-02-14 11:59:02,979 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:59:02,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=test;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,980 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,980 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:02,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,982 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:02,983 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:02,984 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,016 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1 +¼ʱ䣺2025-02-14 11:59:03,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:03,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:03,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,018 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,018 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table +¼ʱ䣺2025-02-14 11:59:03,021 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1 +¼ʱ䣺2025-02-14 11:59:03,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3113-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:03,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1server=localhost;port=3306;user=root;password=1;database=cnas;CharSet=utf8;Allow User Variables=True +¼ʱ䣺2025-02-14 11:59:03,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,022 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet +¼ʱ䣺2025-02-14 11:59:03,023 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table