diff --git a/CNAS_DBSync/frmDatabaseParams.Designer.cs b/CNAS_DBSync/frmDatabaseParams.Designer.cs
index 79bd830..4ddca01 100644
--- a/CNAS_DBSync/frmDatabaseParams.Designer.cs
+++ b/CNAS_DBSync/frmDatabaseParams.Designer.cs
@@ -1692,6 +1692,7 @@
this.btnKingbaselConn.TabIndex = 58;
this.btnKingbaselConn.Text = "测试连接";
this.btnKingbaselConn.UseVisualStyleBackColor = true;
+ this.btnKingbaselConn.Click += new System.EventHandler(this.btnKingbaselConn_Click);
//
// txtKingbaselServer
//
diff --git a/CNAS_DBSync/frmDatabaseParams.cs b/CNAS_DBSync/frmDatabaseParams.cs
index d75ad41..ebad370 100644
--- a/CNAS_DBSync/frmDatabaseParams.cs
+++ b/CNAS_DBSync/frmDatabaseParams.cs
@@ -1201,7 +1201,7 @@ namespace CNAS_DBSync
dbinfo.Port = this.txtKingbaselPort.Text.Trim();
// 假设有KingbaseInstrumentData类来处理连接测试
- if (new KingbaseInstrumentData(dbinfo, new object[] { "", "", "" }).TestConnection())
+ if (new KingbaseServerInstrumentData(dbinfo, new object[] { "", "", "" }).TestSQLServerLink())
MessageBox.Show("连接成功!");
else
MessageBox.Show("连接失败!");
diff --git a/CnasSynchronusClient/CnasSynchronusBLL.csproj b/CnasSynchronusClient/CnasSynchronusBLL.csproj
index 71e5589..013fc5a 100644
--- a/CnasSynchronusClient/CnasSynchronusBLL.csproj
+++ b/CnasSynchronusClient/CnasSynchronusBLL.csproj
@@ -37,6 +37,10 @@
false
+
+ False
+ ..\dll\Kdbndp.dll
+
@@ -50,6 +54,7 @@
+
diff --git a/CnasSynchronusClient/InsturmentData/KingbaseInstrumentData.cs b/CnasSynchronusClient/InsturmentData/KingbaseInstrumentData.cs
new file mode 100644
index 0000000..5324d34
--- /dev/null
+++ b/CnasSynchronusClient/InsturmentData/KingbaseInstrumentData.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 KingbaseServerInstrumentData : 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 IKingbaseDBService mysqlDataBaseService { get { return new KingbaseDBService(); } }
+
+ public KingbaseFormatConfig KingbaseFormat { get; set; }
+
+ public KingbaseServerInstrumentData(InstrumentDataSourceInfo dataSourceInfo, object[] vs)
+ {
+ try
+ {
+ KingbaseFormat = FileOperation.GetFormatConfigData("KingbaseFormatConfig.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 KingbaseOpenParams { StrHost = StrHost, StrServer = StrServerName, StrUser = StrUser, StrPwd = StrPwd, StrPort = StrPort });
+ }
+
+ public override DataTable GetInstrumentDataByDate()
+ {
+ return mysqlDataBaseService.GetInstrumentDataByDate(
+ new KingbaseOpenParams
+ {
+ StrHost = StrHost,
+ StrServer = StrServerName,
+ StrUser = StrUser,
+ StrPwd = StrPwd,
+ StrPort = StrPort,
+ autoSql = KingbaseFormat.AutoSql
+ },
+ new ConditionParams
+ {
+ TableName = strTableName,
+ DateColumn = strDateColumn,
+ DateValue = strDate
+ }
+ );
+ }
+
+ public override DataTable GetInstrumentDataStruct()
+ {
+ return mysqlDataBaseService.GetInstrumentDataStruct(
+ new KingbaseOpenParams
+ {
+ StrHost = StrHost,
+ StrServer = StrServerName,
+ StrUser = StrUser,
+ StrPwd = StrPwd,
+ StrPort = StrPort,
+ autoSql = KingbaseFormat.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 3e51a30..58d5e1f 100644
--- a/CnasSynchronusDAL/CnasSynchronusDAL.csproj
+++ b/CnasSynchronusDAL/CnasSynchronusDAL.csproj
@@ -49,6 +49,10 @@
..\packages\EntityFramework.6.2.0\lib\net40\EntityFramework.SqlServer.dll
+
+ False
+ ..\dll\Kdbndp.dll
+
..\packages\Microsoft.Bcl.AsyncInterfaces.8.0.0\lib\net462\Microsoft.Bcl.AsyncInterfaces.dll
@@ -123,7 +127,9 @@
+
+
@@ -148,6 +154,7 @@
+
diff --git a/CnasSynchronusDAL/DAL/Helper/KingbaseHelper.cs b/CnasSynchronusDAL/DAL/Helper/KingbaseHelper.cs
new file mode 100644
index 0000000..9224600
--- /dev/null
+++ b/CnasSynchronusDAL/DAL/Helper/KingbaseHelper.cs
@@ -0,0 +1,465 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Linq;
+using System.Text;
+using CnasSynchronousCommon;
+using Kdbndp; // 人大金仓数据库驱动
+
+namespace CnasSynchronusDAL
+{
+ public static class KingbaseHelper
+ {
+ private static String mConnStr = null;
+
+ public static void InitConnectionString(string strServerIP, string strServerPort, string strServerHost, string strServerUser, string strServerPwd)
+ {
+ // 使用KdbndpConnectionStringBuilder构建连接字符串
+ var builder = new KdbndpConnectionStringBuilder
+ {
+ Host = strServerIP,
+ Port = Convert.ToInt32(strServerPort),
+ Database = strServerHost,
+ Username = strServerUser,
+ Password = strServerPwd
+ };
+ mConnStr = builder.ToString();
+ }
+
+ public static void InitConnectionString(string strConnectiong)
+ {
+ mConnStr = strConnectiong;
+ }
+
+ ///
+ /// 对Kingbase数据库执行增删改操作,返回受影响的行数。
+ ///
+ /// 要执行的增删改的SQL语句
+ ///
+ public static int ExecuteNonQuery(String sql)
+ {
+ using (var connection = new KdbndpConnection(mConnStr))
+ {
+ try
+ {
+ connection.Open();
+ using (var transaction = connection.BeginTransaction())
+ {
+ try
+ {
+ using (var cmd = new KdbndpCommand(sql, connection, transaction))
+ {
+ int rows = cmd.ExecuteNonQuery();
+ transaction.Commit();
+ return rows;
+ }
+ }
+ catch (Exception e1)
+ {
+ transaction.Rollback();
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+ }
+
+ ///
+ /// 对数据库执行增删改操作,返回受影响的行数。
+ ///
+ /// 要执行的增删改的SQL语句
+ ///
+ public static int ExecuteNonQuery(String sql, KdbndpParameter[] cmdParams)
+ {
+ using (var connection = new KdbndpConnection(mConnStr))
+ {
+ try
+ {
+ connection.Open();
+ using (var transaction = connection.BeginTransaction())
+ {
+ try
+ {
+ using (var cmd = new KdbndpCommand(sql, connection, transaction))
+ {
+ if (cmdParams != null)
+ {
+ cmd.Parameters.AddRange(cmdParams);
+ }
+ int rows = cmd.ExecuteNonQuery();
+ transaction.Commit();
+ return rows;
+ }
+ }
+ catch (Exception e1)
+ {
+ transaction.Rollback();
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+ }
+
+ ///
+ /// 对Kingbase数据库执行操作,返回 返回第一行第一列数据
+ ///
+ ///
+ ///
+ public static int ExecuteScalar(String sql)
+ {
+ try
+ {
+ using (KdbndpConnection connection = new KdbndpConnection(mConnStr))
+ {
+ connection.Open();
+ KdbndpTransaction transaction = connection.BeginTransaction();
+
+ using (KdbndpCommand cmd = new KdbndpCommand())
+ {
+ try
+ {
+ int line = 0;
+
+ PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, null);
+
+ String str = cmd.ExecuteScalar().ToString();
+ transaction.Commit();
+
+ line = Convert.ToInt32(str);
+ cmd.Parameters.Clear();
+
+ return line;
+ }
+ catch (KdbndpException e1)
+ {
+ try
+ {
+ transaction.Rollback();
+ }
+ catch (Exception e2)
+ {
+ AppLog.Error(e2.Message);
+ throw;
+ }
+
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+
+ ///
+ /// 对Kingbase数据库执行操作,返回 返回第一行第一列数据
+ ///
+ ///
+ ///
+ public static int ExecuteScalar(String sql, KdbndpParameter[] cmdParams)
+ {
+ try
+ {
+ using (KdbndpConnection connection = new KdbndpConnection(mConnStr))
+ {
+ connection.Open();
+ KdbndpTransaction transaction = connection.BeginTransaction();
+
+ using (KdbndpCommand cmd = new KdbndpCommand())
+ {
+ try
+ {
+ int line = 0;
+
+ PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, cmdParams);
+
+ String str = cmd.ExecuteScalar().ToString();
+ transaction.Commit();
+
+ line = Convert.ToInt32(str);
+ cmd.Parameters.Clear();
+
+ return line;
+ }
+ catch (KdbndpException e1)
+ {
+ try
+ {
+ transaction.Rollback();
+ }
+ catch (Exception e2)
+ {
+ AppLog.Error(e2.Message);
+ throw;
+ }
+
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+
+ ///
+ /// 用执行的数据库连接执行一个返回数据集的sql命令
+ ///
+ ///
+ ///
+ public static KdbndpDataReader ExecuteReader(String sql)
+ {
+ try
+ {
+ //创建一个KdbndpConnection对象
+ using (KdbndpConnection connection = new KdbndpConnection(mConnStr))
+ {
+ connection.Open();
+ KdbndpTransaction transaction = connection.BeginTransaction();
+
+ //创建一个KdbndpCommand对象
+ using (KdbndpCommand cmd = new KdbndpCommand())
+ {
+ try
+ {
+ PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, null);
+
+ KdbndpDataReader reader = cmd.ExecuteReader(CommandBehavior.CloseConnection);
+ transaction.Commit();
+
+ cmd.Parameters.Clear();
+ return reader;
+ }
+ catch (KdbndpException e1)
+ {
+ try
+ {
+ transaction.Rollback();
+ }
+ catch (Exception e2)
+ {
+ AppLog.Error(e2.Message);
+ throw;
+ }
+
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+
+ ///
+ /// 查询返回Dtaset
+ ///
+ ///
+ ///
+ public static DataSet ExecuteDataSet(String sql)
+ {
+ using (var connection = new KdbndpConnection(mConnStr))
+ {
+ try
+ {
+ connection.Open();
+ using (var transaction = connection.BeginTransaction())
+ {
+ try
+ {
+ using (var cmd = new KdbndpCommand(sql, connection, transaction))
+ {
+ var adapter = new KdbndpDataAdapter(cmd);
+ var ds = new DataSet();
+ adapter.Fill(ds);
+ transaction.Commit();
+ return ds;
+ }
+ }
+ catch (Exception e1)
+ {
+ transaction.Rollback();
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+ }
+
+ ///
+ /// 执行sql 返回一个DataTable
+ ///
+ ///
+ ///
+ ///
+ public static DataTable ExecuteDataTable(string sqlText, params KdbndpParameter[] parameters)
+ {
+ using (var connection = new KdbndpConnection(mConnStr))
+ {
+ try
+ {
+ using (var adapter = new KdbndpDataAdapter(sqlText, connection))
+ {
+ if (parameters != null)
+ {
+ adapter.SelectCommand.Parameters.AddRange(parameters);
+ }
+ var dt = new DataTable();
+ adapter.Fill(dt);
+ return dt;
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ return null;
+ }
+ }
+ }
+
+ ///
+ /// 查询返回Dtaset
+ ///
+ ///
+ ///
+ public static DataSet ExecuteDataSet(String sql, KdbndpParameter[] cmdParams)
+ {
+ KdbndpConnection connection = new KdbndpConnection(mConnStr);
+ try
+ {
+ //创建一个KdbndpConnection对象
+ using (connection)
+ {
+ connection.Open();
+ KdbndpTransaction transaction = connection.BeginTransaction();
+
+ //创建一个KdbndpCommand对象
+ using (KdbndpCommand cmd = new KdbndpCommand())
+ {
+ try
+ {
+ PrepareCommand(cmd, connection, transaction, CommandType.Text, sql, cmdParams);
+
+ KdbndpDataAdapter adapter = new KdbndpDataAdapter();
+ adapter.SelectCommand = cmd;
+ DataSet ds = new DataSet();
+
+ adapter.Fill(ds);
+
+ transaction.Commit();
+
+ //清除参数
+ cmd.Parameters.Clear();
+ return ds;
+
+ }
+ catch (KdbndpException e1)
+ {
+ try
+ {
+ transaction.Rollback();
+ }
+ catch (Exception e2)
+ {
+ AppLog.Error(e2.Message);
+ throw;
+ }
+
+ AppLog.Error(e1.Message);
+ throw;
+ }
+ }
+ }
+ }
+ catch (Exception e)
+ {
+ AppLog.Error(e.Message);
+ throw;
+ }
+ }
+
+ ///
+ /// 准备执行一个命令
+ ///
+ /// sql命令
+ /// OleDb连接
+ /// OleDb事务
+ /// 命令类型例如 存储过程或者文本
+ /// 命令文本,例如:Select * from Products
+ /// 执行命令的参数
+ private static void PrepareCommand(KdbndpCommand cmd, KdbndpConnection conn, KdbndpTransaction trans, CommandType cmdType, string cmdText, KdbndpParameter[] cmdParms)
+ {
+ if (conn.State != ConnectionState.Open)
+ conn.Open();
+
+ cmd.Connection = conn;
+ cmd.CommandText = cmdText;
+
+ if (trans != null)
+ cmd.Transaction = trans;
+
+ cmd.CommandType = cmdType;
+
+ if (cmdParms != null)
+ {
+ foreach (KdbndpParameter parm in cmdParms)
+ cmd.Parameters.Add(parm);
+ }
+ }
+
+ public static bool TestConnectKingbase()
+ {
+ try
+ {
+
+
+ // 完整参数示例
+ //string connStr = "Host=localhost;Port=54321;Database=test;Username=system;Password=1;Pooling=true;MinPoolSize=1;MaxPoolSize=20;CommandTimeout=120;";
+ string connStr = "Host=localhost;Port=54321;Database=testdb;Username=SYSTEM;Password=1;";
+ //using (var connection = new KdbndpConnection(mConnStr))
+ using (var connection = new KdbndpConnection())
+ {
+ connection.ConnectionString = connStr;
+ connection.Open();
+ return connection.State == ConnectionState.Open;
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ return false;
+ }
+ }
+ }
+}
diff --git a/CnasSynchronusDAL/DAL/KingbaseDAL.cs b/CnasSynchronusDAL/DAL/KingbaseDAL.cs
new file mode 100644
index 0000000..8ed887b
--- /dev/null
+++ b/CnasSynchronusDAL/DAL/KingbaseDAL.cs
@@ -0,0 +1,601 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Data;
+
+using CnasSynchronousCommon;
+using CnasSynchrousModel;
+using System.Reflection;
+using Devart.Common;
+using Npgsql;
+using Kdbndp;
+
+namespace CnasSynchronusDAL
+{
+ public class KingbaseDAL
+ {
+ public void CreateConnectString(string strIP, string strPort, string strName, string strUser, string strPwd)
+ {
+ KingbaseHelper.InitConnectionString(strIP, strPort, strName, strUser, strPwd);
+ }
+
+ public void CreateConnectString(string strConnectString)
+ {
+ KingbaseHelper.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_catalog='{0}' and table_schema='public'", strName);
+ try
+ {
+ dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ ///
+ /// 获取某表的表结构
+ ///
+ ///
+ ///
+ public DataTable GetTableStruct(string strTableName, string strViewName, string strViewSql)
+ {
+ DataTable dt = new DataTable();
+ if (strTableName.Length <= 0) return dt;
+ string strSql = "";
+ if (strViewName == strTableName && !string.IsNullOrWhiteSpace(strViewName))
+ strSql = strViewSql + " where 0=1";
+ else
+ strSql = string.Format("SELECT * FROM {0} Where 0=1", strTableName);
+ try
+ {
+ AppLog.Error("===-222-===" + strTableName + strSql);
+ dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ AppLog.Error("===-333-===" + strTableName + "KingbaseHelper.ExecuteDataSet(strSql)" + dt);
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ ///
+ /// 获取某表的表结构和类型长度
+ ///
+ ///
+ ///
+ public DataTable GetTableTypeAndLenth(string strTableName)
+ {
+ DataTable dt = new DataTable();
+ 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 = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+
+ ///
+ /// 逐行批量插入数据
+ ///
+ ///
+ ///
+ public int InsertCnasData(DataTable dt, List syncParamasInfos, List lstFixedValue, string strInsumentColumn)
+ {
+ int iReturn = 0;
+ if (dt.Rows.Count <= 0) return 0;
+ try
+ {
+ //获取唯一健组(关键字段)
+ var query = from p in syncParamasInfos
+ where p.IfPrimaryKey == true
+ select new
+ {
+ p.TargetField
+ };
+ List lstKeyColumns = new List();
+ foreach (var item in query)
+ {
+ lstKeyColumns.Add(item.TargetField);
+ }
+
+ //构建SQL语句
+ string strSql_part1 = "";
+ string strSql_part2 = "";
+ List lstColumnName = new List();
+ foreach (var item in syncParamasInfos)
+ {
+ if (!lstColumnName.Contains(item.TargetField.ToLower()))
+ {
+ strSql_part1 += item.TargetField + ",";
+ strSql_part2 += string.Format("@{0},", item.TargetField.ToLower());
+ lstColumnName.Add(item.TargetField.ToLower());
+ }
+ }
+
+ //如果映射列中不包含固定列,则需要将这些列添加到SQL语句中
+ if (lstFixedValue != null)
+ {
+ foreach (var cnasfield in lstFixedValue)
+ {
+ if (cnasfield.TableName != syncParamasInfos[0].TargetTable) continue;
+ if (!lstColumnName.Contains(cnasfield.ColumnName.ToLower()))
+ {
+ strSql_part1 += cnasfield.ColumnName + ",";
+ strSql_part2 += string.Format("@{0},", cnasfield.ColumnName.ToLower());
+
+ lstColumnName.Add(cnasfield.ColumnName.ToLower());
+ }
+ }
+ }
+ //增加仪器编号数据
+ if (!string.IsNullOrWhiteSpace(strInsumentColumn) && !lstColumnName.Contains(strInsumentColumn.ToLower()))
+ {
+ strSql_part1 += strInsumentColumn + ",";
+ strSql_part2 += string.Format("@{0},", strInsumentColumn);
+
+ lstColumnName.Add(strInsumentColumn.ToLower());
+ }
+
+ string strInsertSql = string.Format("insert into {0}({1}) values({2})", syncParamasInfos[0].TargetTable, strSql_part1.Substring(0, strSql_part1.Length - 1), strSql_part2.Substring(0, strSql_part2.Length - 1));
+ string strUpdateSql = "";
+ DataTable dtSelect = new DataTable();
+ foreach (DataRow dr in dt.Rows)
+ {
+ //插入参数值
+ KdbndpParameter[] parameters = new KdbndpParameter[lstColumnName.Count];
+ int i = 0;
+ foreach (var item in lstColumnName)
+ {
+ parameters[i++] = new KdbndpParameter(item, dr[item]);
+ }
+ //插入时发现已经在数据库中存在该值,则进行更新操作
+ int ifHavaValue = ExistSingleCnasData(lstKeyColumns, syncParamasInfos[0].TargetTable, dr, ref dtSelect);
+ if (ifHavaValue == 1)
+ {
+ if (dtSelect.Rows.Count == 1)
+ {
+ //比对获取的数据跟准备更新的数据是否一样
+ if (!CompareObjectOperation.DataRowCompare(dtSelect.Rows[0], dr, lstColumnName))
+ {
+ //构造更新语句
+ strUpdateSql = GetUpdateSql(lstColumnName, lstKeyColumns, syncParamasInfos[0].TargetTable, dr);
+ //执行UpdateSql语句
+ iReturn += KingbaseHelper.ExecuteNonQuery(strUpdateSql, parameters);
+ }
+ else
+ {
+ iReturn = -2;
+ AppLog.Info("更新时发现在数据库中相同关键字段数据一致。");
+ }
+ }
+ else
+ {
+ AppLog.Error("更新时发现在数据库中多条相同关键字段数据,请重新配置关键字段。");
+ }
+ }
+ else if (ifHavaValue == 0)
+ {
+ //执行InsertSQL语句
+ iReturn += KingbaseHelper.ExecuteNonQuery(strInsertSql, parameters);
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ if (!LinkCnasTest())
+ {
+ iReturn = -1; //用于表示插入时无法正常数据库连接问题
+ }
+ //此处添加错误日志
+ AppLog.Error(ex.Message);
+ }
+ return iReturn;
+ }
+
+ ///
+ /// 拼接Update语句
+ ///
+ ///
+ ///
+ ///
+ private string GetUpdateSql(List lstColumnName, List lstPrimaryColumn, string strTableName, DataRow dr)
+ {
+ //构造关键字段条件
+ string strsql_partial = "";
+ foreach (var item in lstPrimaryColumn)
+ {
+ if (dr.Table.Columns.Contains(item.ToString()))
+ if (dr[item.ToString()].ToString() != "")
+ strsql_partial += $"{item.ToString()}='{dr[item.ToString()].ToString()}' and ";
+ else
+ strsql_partial += $"({item.ToString()}='{dr[item.ToString()].ToString()}' or {item.ToString()} is null) and ";
+ }
+
+ //构造Update语句
+ string strUpdateSql = "";
+ string strsql_partial2 = "";
+ foreach (var item in lstColumnName)
+ {
+ strsql_partial2 += $"{item}=@{item},";
+ }
+
+ if (strsql_partial.Length > 3 && strsql_partial2.Length > 0)
+ strUpdateSql = $"update {strTableName} set {strsql_partial2.Substring(0, strsql_partial2.Length - 1)} where {strsql_partial.Substring(0, strsql_partial.Length - 4)}";
+
+ return strUpdateSql;
+ }
+
+ internal bool CheckMacMessage(string strMac)
+ {
+ bool bIfChecked = false;
+ string strSql = string.Format("select * FROM macaddress WHERE MAC_ADDRESS='{0}'", strMac);
+ try
+ {
+ DataTable dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ if (dt != null && dt.Rows.Count > 0)
+ {
+ bIfChecked = true;
+ }
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return bIfChecked;
+ }
+
+ ///
+ /// 是否数据库中已经存在数据,如果存在返回1,并且传递返回的数据;如果不存在,返回0;如果发生了异常,返回-1
+ ///
+ ///
+ ///
+ ///
+ ///
+ ///
+ private int ExistSingleCnasData(List lstPrimaryColumn, string strTableName, DataRow dr, ref DataTable dtSelect)
+ {
+ int bIfHaveValue = 0; //如果存在,返回1;如果不存在,返回0;如果发生了异常,返回-1
+ string strsql_partial = "";
+ string strSql = "";
+ foreach (var item in lstPrimaryColumn)
+ {
+ if (dr.Table.Columns.Contains(item.ToString()))
+ if (dr[item.ToString()].ToString() != "")
+ strsql_partial += $"{item.ToString()}='{dr[item.ToString()].ToString()}' and ";
+ else
+ strsql_partial += $"({item.ToString()}='{dr[item.ToString()].ToString()}' or {item.ToString()} is null) and ";
+ }
+ if (strsql_partial.Length > 3)
+ strSql = $"select * from {strTableName} where {strsql_partial.Substring(0, strsql_partial.Length - 4)}";
+
+ if (strsql_partial.Length > 3 && (strTableName.Equals("tcoalweight") || strTableName.Equals("TCOALWEIGHT")))
+ strSql = $"select * from {strTableName} where (idbatch is null or idbatch = '') and {strsql_partial.Substring(0, strsql_partial.Length - 4)}";
+
+ if (strSql != "")
+ {
+ DataTable dt = KingbaseHelper.ExecuteDataTable(strSql, new KdbndpParameter[] { });
+ if (dt != null && dt.Rows.Count > 0)
+ {
+ bIfHaveValue = 1;
+ dtSelect = dt;
+ AppLog.Info($"插入前查询时存在重复数据:{strSql}");
+ }
+ else if (dt == null)
+ {
+ bIfHaveValue = -1;
+ AppLog.Info($"插入前查询时发生了异常:{strSql}");
+ }
+ }
+ return bIfHaveValue;
+ }
+ internal DataTable GetLoginNameByPwd(string strUserName, string strPwd)
+ {
+ DataTable dt = new DataTable();
+ string strSql = string.Format("select * FROM user WHERE userid='{0}' and password='{1}'", strUserName, strPwd);
+ try
+ {
+ dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ public bool LinkCnasTest()
+ {
+ return KingbaseHelper.TestConnectKingbase();
+ }
+
+ ///
+ /// 获得表中该列中最大时间
+ ///
+ ///
+ ///
+ public string GetMaxTimeByTableName(string strTableName, string strDateColumn, string strInstrumentColumn, string strInstrumentValue)
+ {
+ string strReturnTime = "";
+ //因为数据库用varchar存储日期字段,从而格式不固定,需要使用多种格式读取
+ try
+ {
+ #region 旧的获取时间方法
+ ////string strSql_1 = string.Format("SELECT max(STR_TO_DATE({0},'%Y-%m-%d %H:%i:%s')) FROM {1} ", strDateColumn, strTableName);
+ ////string strSql_2 = string.Format("SELECT max(STR_TO_DATE({0},'%Y/%m/%d %H:%i:%s')) FROM {1} ", strDateColumn, strTableName);
+ //string strSql_2 = string.Format("SELECT max(Convert({0},datetime)) FROM {1} ", strDateColumn, strTableName);
+
+ ////string strDateTime_1 = GetMaxTimeByTableName(strSql_1);
+ //string strDateTime_2= GetMaxTimeByTableName(strSql_2);
+
+ ////AppLog.Info($"读取到最大的时间(1):表-{strTableName},列-{strDateColumn},值-{strDateTime_1}");
+ //AppLog.Info($"读取到最大的时间(2):表-{strTableName},列-{strDateColumn},值-{strDateTime_2}");
+
+ //List lstTime = new List();
+ ////DateTime dateTime_1 = DateTime.Now;
+ //DateTime dateTime_2 = DateTime.Now;
+ ////if (DateTime.TryParse(strDateTime_1, out dateTime_1))
+ ////{
+ //// lstTime.Add(dateTime_1);
+ ////}
+ //if (DateTime.TryParse(strDateTime_2, out dateTime_2))
+ //{
+ // if (!lstTime.Contains(dateTime_2))
+ // lstTime.Add(dateTime_2);
+ //}
+
+ //if (lstTime.Count > 0)
+ //{
+ // strReturnTime = lstTime.Max().ToString();
+
+ // AppLog.Info($"返回最大的时间(3):表-{strTableName},列-{strDateColumn},值-{strReturnTime}");
+ //}
+ # endregion
+
+ string strSql = string.Format("SELECT Convert(max(Convert({0},datetime)) using utf8) FROM {1}", strDateColumn, strTableName, strInstrumentColumn, strInstrumentValue);
+ if (!string.IsNullOrWhiteSpace(strInstrumentColumn) && !string.IsNullOrWhiteSpace(strInstrumentValue))
+ strSql += string.Format(" where {0}='{1}'", strInstrumentColumn, strInstrumentValue);
+ string strDateTime = GetMaxTimeByTableName(strSql);
+ DateTime dateTime = DateTime.Now;
+ if (DateTime.TryParse(strDateTime, out dateTime))
+ {
+ strReturnTime = strDateTime;
+ }
+ }
+ catch (Exception ex)
+ {
+ //if (!LinkCnasTest())
+ //{
+ // strReturnTime = "1899-1-1"; //用于表示插入时无法正常数据库连接问题
+ //}
+ //只要发生异常,就返回这个结果
+ strReturnTime = "1899-1-1";
+ AppLog.Error(ex.Message);
+ }
+ return strReturnTime;
+ }
+
+ internal DataTable GetDataByDateColumn(string strDBName, string strViewName, string strViewSql, string strTableName, string strDateColumn, string strDate)
+ {
+ DataTable dtReturn = new DataTable();
+ try
+ {
+ string strSql = "";
+ if (strViewName == strTableName && !string.IsNullOrWhiteSpace(strViewName))
+ strSql = strViewSql + $" where {strDateColumn} >convert( '{strDate}',datetime)";
+ else
+ strSql = $"select * from {strDBName}.public.{strTableName} where \"{strDateColumn}\">TO_TIMESTAMP('{strDate}', 'YYYY-MM-DD HH24:MI:SS');";
+ DataTable dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+
+ Dictionary dictFiled = GetSpecialOperaField(strDBName, strTableName);
+ if (dictFiled.Count > 0)
+ dtReturn = DateAndTimeTypeOpera(dt, dictFiled);
+ else
+ dtReturn = dt;
+ }
+ catch (Exception ex)
+ {
+ //发生异常,写入日志
+ AppLog.Error(ex.Message);
+ throw ex;
+ }
+ return dtReturn;
+ }
+
+ internal Dictionary GetAllTableNameAndStructure(string strDBName)
+ {
+ Dictionary dictTables = new Dictionary();
+ try
+ {
+ DataTable TablesName = GetTableNames(strDBName);//得到所有表
+ foreach (DataRow dr in TablesName.Rows)
+ {
+ string strTableName = dr[0].ToString();
+ AppLog.Error("===---===" + strTableName + "GetTableStruct(strTableName, )");
+ dictTables.Add(strTableName.ToUpper(), GetTableStruct(strTableName, "", ""));
+ }
+
+ }
+ catch (Exception ex)
+ {
+ //发生异常,写入日志
+ AppLog.Error(ex.Message);
+ //throw ex;
+ }
+ return dictTables;
+ }
+
+ public string GetMaxTimeByTableName(string strSql)
+ {
+ string strDateTime = "";
+ try
+ {
+
+ DataTable dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ AppLog.Info($"执行语句获得最晚时间:{strSql}");
+ if (dt != null && dt.Rows.Count == 1)
+ {
+ strDateTime = dt.Rows[0][0].ToString();
+ AppLog.Info($"执行语句获得最晚时间:行数-({dt.Rows.Count}),列数-({dt.Columns.Count}),值-({strDateTime})");
+ }
+ }
+ catch (Exception ex)
+ {
+ if (!LinkCnasTest())
+ {
+ strDateTime = "1899-1-1"; //用于表示插入时无法正常数据库连接问题
+ }
+ AppLog.Error(ex.Message);
+ }
+ return strDateTime;
+ }
+
+
+ ///
+ /// 获取所有数据字段,然后记录其中是否存在需要特殊处理的字段
+ ///
+ ///
+ private static Dictionary GetSpecialOperaField(string strDBName, string strTableName)
+ {
+ Dictionary DictFiled = new Dictionary();
+ DataTable dt = new DataTable();
+ try
+ {
+ string sql = string.Format("SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME='{0}' and table_schema='{1}'", strTableName, strDBName); //查询字符串
+ dt = KingbaseHelper.ExecuteDataSet(sql).Tables[0];
+
+ foreach (DataRow dr in dt.Rows)
+ {
+ if (dr["data_type"].ToString().ToLower() == "date" || dr["data_type"].ToString().ToLower() == "time")
+ {
+ DictFiled.Add(dr["column_name"].ToString(), dr["data_type"].ToString());
+ }
+ }
+ }
+ catch (Exception ex)
+ {
+ //发生异常,写入日志
+ AppLog.Error(ex.Message);
+ }
+ return DictFiled;
+ }
+
+ ///
+ /// 获取数据时,单独处理某些(Date和Time)类型数据,并把数据类型转换为字符串类型
+ ///
+ private static DataTable DateAndTimeTypeOpera(DataTable dt, Dictionary DictSpecialField)
+ {
+ DataTable dtNewFormat = new DataTable();
+
+ //添加列
+ foreach (DataColumn dc in dt.Columns)
+ {
+ if (DictSpecialField.ContainsKey(dc.ColumnName))
+ {
+ string strDateType = DictSpecialField[dc.ColumnName];
+ switch (strDateType.ToUpper())
+ {
+ case "DATE":
+ case "TIME":
+ dtNewFormat.Columns.Add(dc.ColumnName, typeof(string)); //使用字符串来存储该字段,而不是采用它的数据库格式(C#无法区分Date, Time,DateTime,前两种格式会自动补充数据,导致数据的不准确)
+ break;
+ default:
+ dtNewFormat.Columns.Add(dc.ColumnName, dc.DataType);
+ break;
+ }
+ }
+ else
+ {
+ dtNewFormat.Columns.Add(dc.ColumnName, dc.DataType);
+ }
+ }
+
+ //添加数据行
+ foreach (DataRow dr in dt.Rows)
+ {
+ DataRow drNewRow = dtNewFormat.NewRow();
+ foreach (DataColumn dc in dtNewFormat.Columns)
+ {
+ if (!DictSpecialField.ContainsKey(dc.ColumnName))
+ drNewRow[dc.ColumnName] = dr[dc.ColumnName];
+ else
+ {
+ switch (DictSpecialField[dc.ColumnName].ToUpper())
+ {
+ case "DATE":
+ if (dr[dc.ColumnName] != null && dr[dc.ColumnName].ToString() != "")
+ drNewRow[dc.ColumnName] = Convert.ToDateTime(dr[dc.ColumnName]).ToString("yyyy-MM-dd");
+ break;
+ case "TIME":
+ if (dr[dc.ColumnName] != null && dr[dc.ColumnName].ToString() != "")
+ drNewRow[dc.ColumnName] = Convert.ToDateTime(dr[dc.ColumnName].ToString()).ToString("HH:mm:ss");
+ break;
+ default:
+ drNewRow[dc.ColumnName] = dr[dc.ColumnName];
+ break;
+ }
+ }
+ }
+ dtNewFormat.Rows.Add(drNewRow);
+ }
+
+ //返回数据
+ return dtNewFormat;
+ }
+
+ ///
+ /// 获取某个表的数据
+ ///
+ ///
+ ///
+ public DataTable GetTableData(string strSql)
+ {
+ DataTable dt = new DataTable();
+ try
+ {
+ dt = KingbaseHelper.ExecuteDataSet(strSql).Tables[0];
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return dt;
+ }
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ public bool InsertTableData(string strSql)
+ {
+
+ try
+ {
+ return KingbaseHelper.ExecuteNonQuery(strSql) > 0;
+ }
+ catch (Exception ex)
+ {
+ AppLog.Error(ex.Message);
+ }
+ return false;
+ }
+
+ }
+}
diff --git a/CnasSynchronusDAL/Service/KingbaseDBService.cs b/CnasSynchronusDAL/Service/KingbaseDBService.cs
new file mode 100644
index 0000000..60b8930
--- /dev/null
+++ b/CnasSynchronusDAL/Service/KingbaseDBService.cs
@@ -0,0 +1,142 @@
+using System;
+using System.Collections.Generic;
+using System.Data;
+using System.Data.Entity;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using CnasSynchronousCommon;
+using CnasSynchronusIDAL;
+using CnasSynchrousModel;
+
+namespace CnasSynchronusDAL
+{
+ public class KingbaseDBService : IKingbaseDBService
+ {
+ public bool TestConnect(string strHost, string strName, string strUser, string strPwd, string strPort)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(strHost, strPort, strName, strUser, strPwd);
+ return mySQLBase.LinkCnasTest();
+ }
+
+ public Dictionary GetInstrumentData(KingbaseOpenParams t)
+ {
+ KingbaseDAL mySQL = new KingbaseDAL();
+ mySQL.CreateConnectString(t.StrHost, t.StrPort, t.StrServer, t.StrUser, t.StrPwd);
+ return mySQL.GetAllTableNameAndStructure(t.StrServer);
+ }
+
+ public DataTable GetInstrumentDataByDate(KingbaseOpenParams t, ConditionParams u)
+ {
+ KingbaseDAL mySQL = new KingbaseDAL();
+ mySQL.CreateConnectString(t.StrHost, t.StrPort, t.StrServer, t.StrUser, t.StrPwd);
+ return mySQL.GetDataByDateColumn(
+ t.StrServer,
+ t.autoSql.KingbaseViewName,
+ t.autoSql.KingbaseViewSql,
+ u.TableName,
+ u.DateColumn,
+ u.DateValue);
+ }
+
+ public DataTable GetInstrumentDataStruct(KingbaseOpenParams t, ConditionParams u)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(t.StrHost, t.StrPort, t.StrServer, t.StrUser, t.StrPwd);
+ return mySQLBase.GetTableStruct(
+ u.TableName,
+ t.autoSql.KingbaseViewName,
+ t.autoSql.KingbaseViewSql
+ );
+ }
+
+ public DataTable GetAllCNASTablesName(DataBaseInfo dataBase)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ return mySQLBase.GetTableNames(dataBase.DBName);
+ }
+
+ public DataTable GetCNASTablesStruct(string strTableName, DataBaseInfo dataBase)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ return mySQLBase.GetTableStruct(strTableName,"","");
+ }
+
+ public int InsertDataToCNASTable(DataTable dt, DataBaseInfo dataBase, List syncParamasInfos, string strInstrumentColumn,List lstFixedValue = null)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ return mySQLBase.InsertCnasData(dt, syncParamasInfos, lstFixedValue, strInstrumentColumn);
+ }
+
+ public DataTable GetCNASTableTypeLenth(string strTableName, DataBaseInfo dataBase)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ return mySQLBase.GetTableTypeAndLenth(strTableName);
+ }
+
+ public DataTable GetLoginNameByPwd(DataBaseInfo dataBase, string strUserName, string strPwd)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ strPwd = EncryptionOperation.GetMD5Hash(strPwd);
+ AppLog.Info(strPwd);
+ return mySQLBase.GetLoginNameByPwd(strUserName, strPwd);
+ }
+
+ public bool CheckMacMessage(DataBaseInfo dataBase, string strMac)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ return mySQLBase.CheckMacMessage(strMac);
+ }
+
+ public bool CheckMacMessage(string strConnectionString, string strMac)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(strConnectionString);
+ return mySQLBase.CheckMacMessage(strMac);
+ }
+
+ public string GetMaxTimeByTableName(DataBaseInfo dataBase, string strTableName, string strDateColumn, string strInstrumentColumn, string strInstrumentValue)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+ return mySQLBase.GetMaxTimeByTableName(strTableName, strDateColumn, strInstrumentColumn, strInstrumentValue);
+ }
+
+
+ ///
+ /// 获取某个表的数据
+ ///
+ ///
+ ///
+ ///
+ public DataTable GetTableData(DataBaseInfo dataBase, string strSql)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+
+ return mySQLBase.GetTableData(strSql);
+ }
+
+ ///
+ /// 插入某个表的数据
+ ///
+ ///
+ ///
+ ///
+ public bool InsertTableData(DataBaseInfo dataBase, string strSql)
+ {
+ KingbaseDAL mySQLBase = new KingbaseDAL();
+ mySQLBase.CreateConnectString(dataBase.DBHost, dataBase.DBPort, dataBase.DBName, dataBase.DBUser, dataBase.DBPwd);
+
+ return mySQLBase.InsertTableData(strSql);
+ }
+
+ }
+}
diff --git a/CnasSynchronusIDAL/IDBService.cs b/CnasSynchronusIDAL/IDBService.cs
index be70974..00dd6c0 100644
--- a/CnasSynchronusIDAL/IDBService.cs
+++ b/CnasSynchronusIDAL/IDBService.cs
@@ -18,6 +18,12 @@ namespace CnasSynchronusIDAL
}
+ public interface IKingbaseDBService : ITargetDataBaseService, ISourceDataBaseService
+ {
+
+ }
+
+
public interface IDB2DBService : ITargetDataBaseService
{
diff --git a/CnasSynchrousModel/CnasSynchrousModel.csproj b/CnasSynchrousModel/CnasSynchrousModel.csproj
index d6b16ac..7f66fd1 100644
--- a/CnasSynchrousModel/CnasSynchrousModel.csproj
+++ b/CnasSynchrousModel/CnasSynchrousModel.csproj
@@ -50,6 +50,7 @@
+
@@ -75,6 +76,7 @@
+
diff --git a/CnasSynchrousModel/Param/KingbaseOpenParams.cs b/CnasSynchrousModel/Param/KingbaseOpenParams.cs
new file mode 100644
index 0000000..b3a4cdf
--- /dev/null
+++ b/CnasSynchrousModel/Param/KingbaseOpenParams.cs
@@ -0,0 +1,31 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+
+namespace CnasSynchrousModel
+{
+ public class KingbaseOpenParams : OpenSourceParams
+ {
+ ///
+ /// 服务器IP
+ ///
+ public string StrHost { get; set; }
+
+ ///
+ /// 服务器实例名
+ ///
+ public string StrServer { get; set; }
+
+ ///
+ /// 端口
+ ///
+ public string StrPort { get; set; }
+
+ ///
+ /// 自定义查询
+ ///
+ public KingbaseAutoSql autoSql { get; set; }
+ }
+}
diff --git a/CnasSynchrousModel/SourceConfigFile/KingbaseFormatConfig.cs b/CnasSynchrousModel/SourceConfigFile/KingbaseFormatConfig.cs
new file mode 100644
index 0000000..baace0e
--- /dev/null
+++ b/CnasSynchrousModel/SourceConfigFile/KingbaseFormatConfig.cs
@@ -0,0 +1,56 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+
+namespace CnasSynchrousModel
+{
+ public class KingbaseFormatConfig
+ {
+ ///
+ /// Kingbaseļеĸʽ
+ ///
+ public string KingbaseFileDateColumnFormat { get; set; }
+
+ ///
+ /// ȡKingbaseԶ
+ ///
+ public KingbaseAutoSql AutoSql { get; set; }
+
+ ///
+ /// ȡKingbaseݵ
+ ///
+ public KingbaseSpecialDataTableOpera SpecialDtOpera { get; set; }
+ }
+
+
+ public class KingbaseAutoSql
+ {
+ ///
+ /// ȡKingbaseԶʱı
+ ///
+ public string KingbaseViewName { get; set; }
+
+ ///
+ /// KingbaseʱִеԶ
+ ///
+ public string KingbaseViewSql { get; set; }
+ }
+
+ ///
+ /// ڶȡdt
+ ///
+ public class KingbaseSpecialDataTableOpera
+ {
+
+ ///
+ ///
+ ///
+ public string Method { get; set; }
+
+ ///
+ /// ִзҪֶIJ
+ ///
+ public string Value { get; set; }
+ }
+}
diff --git a/dll/CNASBalanceDBManage.exe.config b/dll/CNASBalanceDBManage.exe.config
index ac31a01..2a715e2 100644
--- a/dll/CNASBalanceDBManage.exe.config
+++ b/dll/CNASBalanceDBManage.exe.config
@@ -1,4 +1,4 @@
-
+
@@ -46,7 +46,9 @@
-
+
+
+
@@ -58,5 +60,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/dll/CNAS_BalanceClient.exe.config b/dll/CNAS_BalanceClient.exe.config
index 0d52222..1b92c0a 100644
--- a/dll/CNAS_BalanceClient.exe.config
+++ b/dll/CNAS_BalanceClient.exe.config
@@ -1,4 +1,4 @@
-
+
@@ -60,5 +60,20 @@
+
+
+
+
+
+
+
+
+
+
+
+
-
+
+
+
+
\ No newline at end of file
diff --git a/dll/CNAS_DBSync.exe b/dll/CNAS_DBSync.exe
index 518aa20..4674d67 100644
Binary files a/dll/CNAS_DBSync.exe and b/dll/CNAS_DBSync.exe differ
diff --git a/dll/CNAS_DBSync.exe.config b/dll/CNAS_DBSync.exe.config
index 4afd3da..b89384f 100644
--- a/dll/CNAS_DBSync.exe.config
+++ b/dll/CNAS_DBSync.exe.config
@@ -1,4 +1,4 @@
-
+
@@ -35,7 +35,9 @@
-
+
+
+
@@ -75,7 +77,10 @@
-
+
+
+
+
@@ -93,5 +98,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/dll/CNAS_RunSync.exe.config b/dll/CNAS_RunSync.exe.config
index 39ffcd5..f15c523 100644
--- a/dll/CNAS_RunSync.exe.config
+++ b/dll/CNAS_RunSync.exe.config
@@ -56,8 +56,14 @@
-
-
+
+
+
+
+
+
+
+
@@ -66,5 +72,11 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/dll/CNAS_SyncService.exe.config b/dll/CNAS_SyncService.exe.config
index 439f18b..62ee52f 100644
--- a/dll/CNAS_SyncService.exe.config
+++ b/dll/CNAS_SyncService.exe.config
@@ -1,4 +1,4 @@
-
+
@@ -65,7 +65,9 @@
-
+
+
+
@@ -77,5 +79,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file
diff --git a/dll/CnasSynchronusClient.dll b/dll/CnasSynchronusClient.dll
index d88aba9..21dd50c 100644
Binary files a/dll/CnasSynchronusClient.dll and b/dll/CnasSynchronusClient.dll differ
diff --git a/dll/CnasSynchronusDAL.dll b/dll/CnasSynchronusDAL.dll
index 7595b28..ef32bde 100644
Binary files a/dll/CnasSynchronusDAL.dll and b/dll/CnasSynchronusDAL.dll differ
diff --git a/dll/CnasSynchronusIDAL.dll b/dll/CnasSynchronusIDAL.dll
index 046ed56..07068ad 100644
Binary files a/dll/CnasSynchronusIDAL.dll and b/dll/CnasSynchronusIDAL.dll differ
diff --git a/dll/CnasSynchrousModel.dll b/dll/CnasSynchrousModel.dll
index 08d8f75..a6fe8c8 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 2d9f447..605d061 100644
--- a/dll/Data/SyncInStrumentData.mes
+++ b/dll/Data/SyncInStrumentData.mes
@@ -1 +1 @@
-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
\ No newline at end of file
+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
\ No newline at end of file
diff --git a/dll/ErrorLog/20250215.txt b/dll/ErrorLog/20250215.txt
new file mode 100644
index 0000000..91c8a4e
--- /dev/null
+++ b/dll/ErrorLog/20250215.txt
@@ -0,0 +1,713 @@
+¼ʱ䣺2025-02-15 11:18:09,943 ߳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-15 11:18:09,959 ߳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-15 11:18:09,961 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,026 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,028 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,031 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:10,032 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,037 ߳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-15 11:18:10,037 ߳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-15 11:18:10,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,055 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,056 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,104 ߳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-15 11:18:10,104 ߳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-15 11:18:10,104 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,117 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,118 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,203 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,205 ߳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-15 11:18:10,206 ߳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-15 11:18:10,206 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,209 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,210 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,210 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,222 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,227 ߳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-15 11:18:10,227 ߳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-15 11:18:10,227 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,230 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,231 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,250 ߳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-15 11:18:10,250 ߳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-15 11:18:10,251 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,252 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,252 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:10,252 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,255 ߳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-15 11:18:10,255 ߳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-15 11:18:10,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,255 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,256 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,256 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,263 ߳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-15 11:18:10,264 ߳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-15 11:18:10,264 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,267 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,268 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,305 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,309 ߳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-15 11:18:10,309 ߳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-15 11:18:10,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,312 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,314 ߳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-15 11:18:10,315 ߳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-15 11:18:10,315 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,316 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,317 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,317 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,331 ߳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-15 11:18:10,331 ߳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-15 11:18:10,331 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,332 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,332 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:10,332 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,333 ߳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-15 11:18:10,334 ߳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-15 11:18:10,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,334 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,335 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,341 ߳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-15 11:18:10,341 ߳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-15 11:18:10,341 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,344 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,350 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,375 ߳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-15 11:18:10,375 ߳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-15 11:18:10,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,376 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,376 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:10,383 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:10,385 ߳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-15 11:18:10,385 ߳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-15 11:18:10,385 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:10,386 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:20,440 ߳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-15 11:18:20,440 ߳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-15 11:18:20,440 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,442 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:20,442 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:20,443 ߳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-15 11:18:20,443 ߳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-15 11:18:20,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,443 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,444 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,444 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:20,449 ߳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-15 11:18:20,449 ߳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-15 11:18:20,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,451 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,452 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:20,488 ߳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-15 11:18:20,488 ߳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-15 11:18:20,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,488 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,489 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,489 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:20,497 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:20,499 ߳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-15 11:18:20,499 ߳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-15 11:18:20,499 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,500 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:20,500 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,826 ߳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-15 11:18:26,826 ߳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-15 11:18:26,826 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,827 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,827 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:26,827 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,828 ߳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-15 11:18:26,828 ߳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-15 11:18:26,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,828 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,829 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,829 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,831 ߳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-15 11:18:26,832 ߳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-15 11:18:26,832 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,834 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,860 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,862 ߳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-15 11:18:26,862 ߳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-15 11:18:26,862 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,863 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,863 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,866 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,868 ߳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-15 11:18:26,868 ߳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-15 11:18:26,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,868 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,869 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,869 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,877 ߳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-15 11:18:26,877 ߳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-15 11:18:26,877 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,878 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,878 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:26,878 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,879 ߳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-15 11:18:26,879 ߳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-15 11:18:26,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,879 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,880 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,880 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,882 ߳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-15 11:18:26,882 ߳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-15 11:18:26,882 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,884 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,907 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,909 ߳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-15 11:18:26,909 ߳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-15 11:18:26,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,910 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,911 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,911 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,914 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,915 ߳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-15 11:18:26,915 ߳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-15 11:18:26,915 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,916 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,916 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,950 ߳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-15 11:18:26,950 ߳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-15 11:18:26,950 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,951 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,951 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:18:26,951 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,952 ߳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-15 11:18:26,952 ߳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-15 11:18:26,952 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,953 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,953 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,957 ߳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-15 11:18:26,957 ߳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-15 11:18:26,957 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,959 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,960 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,985 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,988 ߳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-15 11:18:26,988 ߳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-15 11:18:26,988 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,989 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,990 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:18:26,993 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:18:26,994 ߳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-15 11:18:26,994 ߳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-15 11:18:26,994 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,995 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:18:26,995 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,461 ߳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-15 11:21:25,467 ߳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-15 11:21:25,468 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,485 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,486 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,488 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:25,488 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,490 ߳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-15 11:21:25,490 ߳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-15 11:21:25,490 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,492 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,492 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,517 ߳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-15 11:21:25,517 ߳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-15 11:21:25,517 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,520 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,548 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,549 ߳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-15 11:21:25,550 ߳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-15 11:21:25,550 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,551 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,551 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,554 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,555 ߳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-15 11:21:25,555 ߳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-15 11:21:25,555 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,556 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,557 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,567 ߳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-15 11:21:25,567 ߳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-15 11:21:25,567 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,568 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,569 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:25,569 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,570 ߳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-15 11:21:25,571 ߳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-15 11:21:25,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,572 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,574 ߳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-15 11:21:25,574 ߳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-15 11:21:25,574 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,576 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,594 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,596 ߳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-15 11:21:25,596 ߳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-15 11:21:25,596 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,597 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,597 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,616 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,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-15 11:21:25,618 ߳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-15 11:21:25,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,618 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,618 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,628 ߳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-15 11:21:25,628 ߳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-15 11:21:25,628 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,630 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,630 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:25,630 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,631 ߳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-15 11:21:25,632 ߳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-15 11:21:25,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,633 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,635 ߳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-15 11:21:25,635 ߳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-15 11:21:25,635 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,636 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,638 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,653 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,655 ߳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-15 11:21:25,655 ߳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-15 11:21:25,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,656 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:25,658 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:25,659 ߳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-15 11:21:25,659 ߳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-15 11:21:25,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,659 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:25,659 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:35,034 ߳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-15 11:21:35,035 ߳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-15 11:21:35,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,035 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,036 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,036 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:35,036 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:35,038 ߳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-15 11:21:35,038 ߳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-15 11:21:35,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,038 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,039 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:35,043 ߳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-15 11:21:35,043 ߳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-15 11:21:35,043 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,072 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:35,074 ߳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-15 11:21:35,074 ߳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-15 11:21:35,074 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,075 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,075 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:35,079 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:35,081 ߳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-15 11:21:35,081 ߳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-15 11:21:35,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,081 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:35,081 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,000 ߳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-15 11:21:40,001 ߳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-15 11:21:40,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,001 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,002 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,002 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:40,002 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,004 ߳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-15 11:21:40,004 ߳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-15 11:21:40,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,004 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,005 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,005 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,011 ߳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-15 11:21:40,011 ߳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-15 11:21:40,011 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,013 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,014 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,039 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,040 ߳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-15 11:21:40,040 ߳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-15 11:21:40,040 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,041 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,041 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,044 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,045 ߳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-15 11:21:40,045 ߳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-15 11:21:40,045 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,046 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,046 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,056 ߳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-15 11:21:40,056 ߳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-15 11:21:40,056 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,057 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,058 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,058 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:40,058 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,060 ߳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-15 11:21:40,060 ߳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-15 11:21:40,060 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,061 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,061 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,063 ߳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-15 11:21:40,063 ߳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-15 11:21:40,063 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,071 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,072 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,103 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,105 ߳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-15 11:21:40,105 ߳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-15 11:21:40,105 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,106 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,107 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,107 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,131 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,133 ߳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-15 11:21:40,133 ߳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-15 11:21:40,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,133 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,134 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,134 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,146 ߳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-15 11:21:40,146 ߳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-15 11:21:40,146 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,147 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,148 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,148 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:21:40,148 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,150 ߳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-15 11:21:40,150 ߳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-15 11:21:40,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,150 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,151 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,151 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,153 ߳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-15 11:21:40,153 ߳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-15 11:21:40,153 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,155 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,156 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,179 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,180 ߳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-15 11:21:40,180 ߳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-15 11:21:40,180 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,181 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,181 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:21:40,184 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:21:40,185 ߳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-15 11:21:40,185 ߳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-15 11:21:40,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,185 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,186 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:21:40,186 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:22:28,159 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵKingbaseFormatConfig.xml
+¼ʱ䣺2025-02-15 11:22:28,232 ߳ID:[1]- :FileOperation :GetFormatConfigData Ϣ:XML ĵ(0, 0)д
+¼ʱ䣺2025-02-15 11:22:28,410 ߳ID:[1]- :KingbaseHelper :TestConnectKingbase Ϣ:ޡ
+¼ʱ䣺2025-02-15 11:22:56,182 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵKingbaseFormatConfig.xml
+¼ʱ䣺2025-02-15 11:22:56,206 ߳ID:[1]- :FileOperation :GetFormatConfigData Ϣ:XML ĵ(0, 0)д
+¼ʱ䣺2025-02-15 11:25:55,576 ߳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-15 11:25:55,581 ߳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-15 11:25:55,581 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,599 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,600 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,602 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:25:55,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,604 ߳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-15 11:25:55,604 ߳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-15 11:25:55,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,606 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,606 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,629 ߳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-15 11:25:55,629 ߳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-15 11:25:55,629 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,632 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,652 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,654 ߳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-15 11:25:55,654 ߳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-15 11:25:55,655 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,656 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,657 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,657 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,660 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,661 ߳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-15 11:25:55,662 ߳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-15 11:25:55,662 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,665 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,665 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,673 ߳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-15 11:25:55,673 ߳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-15 11:25:55,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,673 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,674 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,674 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:25:55,674 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,675 ߳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-15 11:25:55,675 ߳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-15 11:25:55,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,675 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,676 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,676 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,679 ߳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-15 11:25:55,679 ߳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-15 11:25:55,679 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,681 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,702 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,705 ߳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-15 11:25:55,705 ߳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-15 11:25:55,705 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,706 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,706 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,726 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,729 ߳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-15 11:25:55,729 ߳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-15 11:25:55,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,729 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,730 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,730 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,740 ߳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-15 11:25:55,740 ߳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-15 11:25:55,740 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,741 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,742 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:25:55,742 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,743 ߳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-15 11:25:55,743 ߳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-15 11:25:55,743 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,744 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,744 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,750 ߳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-15 11:25:55,750 ߳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-15 11:25:55,750 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,753 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,770 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,772 ߳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-15 11:25:55,772 ߳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-15 11:25:55,772 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,773 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,773 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:55,776 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:55,777 ߳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-15 11:25:55,777 ߳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-15 11:25:55,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,778 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:55,779 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:59,561 ߳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-15 11:25:59,561 ߳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-15 11:25:59,561 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,562 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,562 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:25:59,562 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:59,563 ߳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-15 11:25:59,563 ߳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-15 11:25:59,563 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,564 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,564 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:59,569 ߳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-15 11:25:59,569 ߳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-15 11:25:59,569 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,571 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,572 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,602 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:25:59,604 ߳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-15 11:25:59,604 ߳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-15 11:25:59,604 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,605 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,605 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:25:59,609 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:25:59,610 ߳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-15 11:25:59,610 ߳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-15 11:25:59,610 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,611 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:25:59,611 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:26:06,470 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵKingbaseFormatConfig.xml
+¼ʱ䣺2025-02-15 11:26:06,531 ߳ID:[1]- :FileOperation :GetFormatConfigData Ϣ:XML ĵ(0, 0)д
+¼ʱ䣺2025-02-15 11:31:05,282 ߳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-15 11:31:05,288 ߳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-15 11:31:05,288 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,304 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,305 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,305 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:31:05,306 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,308 ߳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-15 11:31:05,308 ߳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-15 11:31:05,308 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,309 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,310 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,310 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,335 ߳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-15 11:31:05,335 ߳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-15 11:31:05,335 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,338 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,339 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,358 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,361 ߳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-15 11:31:05,361 ߳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-15 11:31:05,361 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,362 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,363 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,363 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,373 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,375 ߳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-15 11:31:05,375 ߳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-15 11:31:05,375 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,376 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,377 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,377 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,386 ߳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-15 11:31:05,386 ߳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-15 11:31:05,386 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,387 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,387 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:31:05,387 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,388 ߳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-15 11:31:05,388 ߳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-15 11:31:05,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,388 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,389 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,389 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,391 ߳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-15 11:31:05,391 ߳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-15 11:31:05,391 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,394 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,395 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,420 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,422 ߳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-15 11:31:05,422 ߳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-15 11:31:05,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,422 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,423 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,423 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,426 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,428 ߳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-15 11:31:05,428 ߳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-15 11:31:05,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,428 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,429 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,429 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,436 ߳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-15 11:31:05,436 ߳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-15 11:31:05,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,437 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:31:05,437 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,438 ߳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-15 11:31:05,438 ߳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-15 11:31:05,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,441 ߳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-15 11:31:05,441 ߳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-15 11:31:05,441 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,448 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,449 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,464 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,466 ߳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-15 11:31:05,466 ߳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-15 11:31:05,466 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,467 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,467 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:05,474 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:05,476 ߳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-15 11:31:05,476 ߳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-15 11:31:05,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,476 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,478 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:05,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:14,435 ߳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-15 11:31:14,435 ߳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-15 11:31:14,435 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,436 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='test'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,436 ߳ID:[1]- :MySQLDAL :GetAllTableNameAndStructure Ϣ:===---===stuGetTableStruct(strTableName, )
+¼ʱ䣺2025-02-15 11:31:14,436 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:14,437 ߳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-15 11:31:14,437 ߳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-15 11:31:14,437 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,438 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,438 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:14,442 ߳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-15 11:31:14,442 ߳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-15 11:31:14,442 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,445 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,446 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT table_name as TABNAME FROM information_schema.TABLES WHERE table_schema='cnas'System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,478 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===abilitysupervisionrecordSELECT * FROM abilitysupervisionrecord Where 0=1
+¼ʱ䣺2025-02-15 11:31:14,480 ߳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-15 11:31:14,480 ߳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-15 11:31:14,480 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,481 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM abilitysupervisionrecord Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,481 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===abilitysupervisionrecordMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:14,485 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-222-===stuSELECT * FROM stu Where 0=1
+¼ʱ䣺2025-02-15 11:31:14,487 ߳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-15 11:31:14,487 ߳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-15 11:31:14,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3223-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3333-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,487 ߳ID:[1]- :MySQLHelper :ExecuteDataSet Ϣ:===-3443-===SELECT * FROM stu Where 0=1System.Data.DataSet
+¼ʱ䣺2025-02-15 11:31:14,487 ߳ID:[1]- :MySQLDAL :GetTableStruct Ϣ:===-333-===stuMySQLHelper.ExecuteDataSet(strSql)Table
+¼ʱ䣺2025-02-15 11:31:23,505 ߳ID:[1]- :FileHelper :GetLocalFile Ϣ:ûҵKingbaseFormatConfig.xml
+¼ʱ䣺2025-02-15 11:31:23,564 ߳ID:[1]- :FileOperation :GetFormatConfigData Ϣ:XML ĵ(0, 0)д
diff --git a/dll/Kdbndp.dll b/dll/Kdbndp.dll
new file mode 100644
index 0000000..330ff63
Binary files /dev/null and b/dll/Kdbndp.dll differ
diff --git a/dll/WF-ChangeGUID.exe.config b/dll/WF-ChangeGUID.exe.config
index 3886f59..e2c8053 100644
--- a/dll/WF-ChangeGUID.exe.config
+++ b/dll/WF-ChangeGUID.exe.config
@@ -1,10 +1,12 @@
-
+
-
+
+
+
@@ -16,5 +18,17 @@
+
+
+
+
+
+
+
+
+
+
+
+
-
+
\ No newline at end of file