diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/FileContentIndex/95b29c5a-fd5e-4689-8b95-20eb9d7111fe.vsidx b/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/FileContentIndex/95b29c5a-fd5e-4689-8b95-20eb9d7111fe.vsidx deleted file mode 100644 index c3f9d17..0000000 Binary files a/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/FileContentIndex/95b29c5a-fd5e-4689-8b95-20eb9d7111fe.vsidx and /dev/null differ diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/FileContentIndex/e3f49745-2f68-4e14-9717-7d599dc2a67f.vsidx b/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/FileContentIndex/e3f49745-2f68-4e14-9717-7d599dc2a67f.vsidx new file mode 100644 index 0000000..ea08a20 Binary files /dev/null and b/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/FileContentIndex/e3f49745-2f68-4e14-9717-7d599dc2a67f.vsidx differ diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/v17/.suo b/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/v17/.suo index 6e02d18..64df335 100644 Binary files a/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/v17/.suo and b/ZTTMS_Manage_ZDPLFZ_20231017/.vs/ZTTMS_Manage_ZDPLFZ_20231017/v17/.suo differ diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/Form1.cs b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/Form1.cs index 40a3df8..a38164d 100644 --- a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/Form1.cs +++ b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/Form1.cs @@ -390,7 +390,7 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 num = socketSend.Receive(receiveData); } - byte[] data=new byte[num]; + byte[] data = new byte[num]; for (int i = 0; i < num; i++) { data[i] = receiveData[i]; @@ -577,16 +577,16 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 //接收终端位置传感器数据 if (dataTemp[1] == 0x01 && dataTemp[2] == 0x00) { - g_sqlTerminalEquipmentType= dataTemp[6]; + g_sqlTerminalEquipmentType = dataTemp[6]; g_sqlTerminalEquipmentId = dataTemp[10]; g_sqlDeviceName = "位置传感器数据"; - g_sqlDeviceNumber = dataTemp[17]; + g_sqlDeviceNumber = dataTemp[17] - 1; //数据解析 float latitude = BitConverter.ToSingle(new byte[] { dataTemp[21], dataTemp[20], dataTemp[19], dataTemp[18] }, 0); float longitude = BitConverter.ToSingle(new byte[] { dataTemp[25], dataTemp[24], dataTemp[23], dataTemp[22] }, 0); - if(cmbDeviceID.SelectedIndex+1== g_sqlTerminalEquipmentId) + if (cmbDeviceID.SelectedIndex + 1 == g_sqlTerminalEquipmentId) { txtLatitude.Text = latitude.ToString("0.000"); txtLongitude.Text = longitude.ToString("0.000"); @@ -639,7 +639,7 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 g_sqlTerminalEquipmentType = dataTemp[6]; g_sqlTerminalEquipmentId = dataTemp[10]; g_sqlDeviceName = "姿态传感器数据"; - g_sqlDeviceNumber = dataTemp[17]; + g_sqlDeviceNumber = dataTemp[17] - 1; //数据解析 float Ax = BitConverter.ToSingle(new byte[] { dataTemp[21], dataTemp[20], dataTemp[19], dataTemp[18] }, 0); @@ -652,7 +652,7 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 float pitch = BitConverter.ToSingle(new byte[] { dataTemp[49], dataTemp[48], dataTemp[47], dataTemp[46] }, 0); float yaw = BitConverter.ToSingle(new byte[] { dataTemp[53], dataTemp[52], dataTemp[51], dataTemp[50] }, 0); - if(cmbDeviceID.SelectedIndex + 1 == g_sqlTerminalEquipmentId) + if (cmbDeviceID.SelectedIndex + 1 == g_sqlTerminalEquipmentId) { txtAx.Text = Ax.ToString("0.00"); txtAy.Text = Ay.ToString("0.00"); @@ -713,7 +713,7 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 g_sqlTerminalEquipmentType = dataTemp[6]; g_sqlTerminalEquipmentId = dataTemp[10]; g_sqlDeviceName = "多参数数据"; - g_sqlDeviceNumber = dataTemp[17]; + g_sqlDeviceNumber = dataTemp[17] - 1; //数据解析 float temperature = BitConverter.ToSingle(new byte[] { dataTemp[21], dataTemp[20], dataTemp[19], dataTemp[18] }, 0); @@ -785,7 +785,7 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 g_sqlTerminalEquipmentType = dataTemp[6]; g_sqlTerminalEquipmentId = dataTemp[10]; g_sqlDeviceName = "工作环境参数"; - g_sqlDeviceNumber = dataTemp[17]; + g_sqlDeviceNumber = dataTemp[17] - 1; //数据解析 float temperature = BitConverter.ToSingle(new byte[] { dataTemp[21], dataTemp[20], dataTemp[19], dataTemp[18] }, 0); @@ -803,7 +803,7 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 } string output = "温度:" + temperature + "\r" + "湿度:" + humidity + "\r" + "压力:" + pressure - + "\r" + "干电池电压:" + dryBatteryVoltage ; + + "\r" + "干电池电压:" + dryBatteryVoltage; Console.WriteLine(output); //数据存储 @@ -913,31 +913,52 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 { string sql = $"select * from tb_environment where terminal_equipment_id='{cmbDeviceID.SelectedIndex + 1}' order by record_time desc;"; dataReader = MySQL.ExecuteReader(sql); - if(dataReader.Read()) + if (dataReader.Read()) { lblTimeWorkEnviron.Text = dataReader[1].ToString(); txtTemperature.Text = dataReader[12].ToString(); txtHumidity.Text = dataReader[13].ToString(); - txtPressure.Text= dataReader[14].ToString(); + txtPressure.Text = dataReader[14].ToString(); txtDrybattery.Text = dataReader[15].ToString(); } + else + { + lblTimeWorkEnviron.Text = ""; + txtTemperature.Text = ""; + txtHumidity.Text = ""; + txtPressure.Text = ""; + txtDrybattery.Text = ""; + } dataReader.Close(); dataReader.Dispose(); - sql=$"select * from tb_gesture where terminal_equipment_id='{cmbDeviceID.SelectedIndex + 1}' order by record_time desc;"; + sql = $"select * from tb_gesture where terminal_equipment_id='{cmbDeviceID.SelectedIndex + 1}' order by record_time desc;"; dataReader = MySQL.ExecuteReader(sql); if (dataReader.Read()) { lblTimeGesture.Text = dataReader[1].ToString(); - txtAx.Text= dataReader[12].ToString(); - txtAy.Text= dataReader[13].ToString(); - txtAz.Text= dataReader[14].ToString(); - txtWx.Text= dataReader[15].ToString(); - txtWy.Text= dataReader[16].ToString(); - txtWz.Text= dataReader[17].ToString(); - txtRoll.Text= dataReader[18].ToString(); - txtPitch.Text= dataReader[19].ToString(); - txtYaw.Text= dataReader[20].ToString(); + txtAx.Text = dataReader[12].ToString(); + txtAy.Text = dataReader[13].ToString(); + txtAz.Text = dataReader[14].ToString(); + txtWx.Text = dataReader[15].ToString(); + txtWy.Text = dataReader[16].ToString(); + txtWz.Text = dataReader[17].ToString(); + txtRoll.Text = dataReader[18].ToString(); + txtPitch.Text = dataReader[19].ToString(); + txtYaw.Text = dataReader[20].ToString(); + } + else + { + lblTimeGesture.Text = ""; + txtAx.Text = ""; + txtAy.Text = ""; + txtAz.Text = ""; + txtWx.Text = ""; + txtWy.Text = ""; + txtWz.Text = ""; + txtRoll.Text = ""; + txtPitch.Text = ""; + txtYaw.Text = ""; } dataReader.Close(); dataReader.Dispose(); @@ -946,9 +967,15 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 dataReader = MySQL.ExecuteReader(sql); if (dataReader.Read()) { - lblTimeLocation.Text= dataReader[1].ToString(); - txtLatitude.Text= dataReader[12].ToString(); - txtLongitude.Text= dataReader[13].ToString(); + lblTimeLocation.Text = dataReader[1].ToString(); + txtLatitude.Text = dataReader[12].ToString(); + txtLongitude.Text = dataReader[13].ToString(); + } + else + { + lblTimeLocation.Text = ""; + txtLatitude.Text = ""; + txtLongitude.Text = ""; } dataReader.Close(); dataReader.Dispose(); @@ -957,13 +984,23 @@ namespace ZTTMS_Manage_ZDPLFZ_20231017 dataReader = MySQL.ExecuteReader(sql); if (dataReader.Read()) { - lblTimeMulti.Text= dataReader[1].ToString(); - txtTemperatureM.Text= dataReader[13].ToString(); - txtph.Text= dataReader[15].ToString(); - txtConductivity.Text= dataReader[17].ToString(); - txtDissolvedOxygen.Text= dataReader[19].ToString(); - txtOil.Text= dataReader[20].ToString(); - txtAmmoniaNitrogen.Text= dataReader[21].ToString(); + lblTimeMulti.Text = dataReader[1].ToString(); + txtTemperatureM.Text = dataReader[13].ToString(); + txtph.Text = dataReader[15].ToString(); + txtConductivity.Text = dataReader[17].ToString(); + txtDissolvedOxygen.Text = dataReader[19].ToString(); + txtOil.Text = dataReader[20].ToString(); + txtAmmoniaNitrogen.Text = dataReader[21].ToString(); + } + else + { + lblTimeMulti.Text = ""; + txtTemperatureM.Text = ""; + txtph.Text = ""; + txtConductivity.Text = ""; + txtDissolvedOxygen.Text = ""; + txtOil.Text = ""; + txtAmmoniaNitrogen.Text = ""; } dataReader.Close(); dataReader.Dispose(); diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/EveryDayLog/2023/11/21.txt b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/EveryDayLog/2023/11/21.txt new file mode 100644 index 0000000..97486ba --- /dev/null +++ b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/EveryDayLog/2023/11/21.txt @@ -0,0 +1,65 @@ +2023/11/21 16:31:24: ExecuteReaderError:MySql.Data.MySqlClient.MySqlException (0x80004005): Authentication to host '127.0.0.1' for user 'root' using method 'mysql_native_password' failed with message: Access denied for user 'root'@'localhost' (using password: YES) ---> MySql.Data.MySqlClient.MySqlException (0x80004005): Access denied for user 'root'@'localhost' (using password: YES) + 在 MySql.Data.MySqlClient.MySqlStream.d__30.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.NativeDriver.d__34.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.d__23.MoveNext() + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.AuthenticationFailed(MySqlException ex) + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.d__23.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task) + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.d__21.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.NativeDriver.d__40.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult() + 在 MySql.Data.MySqlClient.NativeDriver.d__38.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + 在 MySql.Data.MySqlClient.NativeDriver.d__38.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.Driver.d__76.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.Driver.d__74.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 MySql.Data.MySqlClient.Driver.d__74.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__31.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__30.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__34.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__35.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task) + 在 MySql.Data.MySqlClient.MySqlConnection.d__91.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlConnection.Open() + 在 ZTTMS_Manage_ZDPLFZ_20231017.MySQL.ExecuteReader(String strSQL) 位置 F:\Code\zhedapiaoliufuzi\20221201_PLFB_upperpc_4G\ZTTMS_Manage_ZDPLFZ_20231017\ZTTMS_Manage_ZDPLFZ_20231017\MySQL.cs:行号 476 diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/EveryDayLog/2023/11/22.txt b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/EveryDayLog/2023/11/22.txt new file mode 100644 index 0000000..203ddd5 --- /dev/null +++ b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/EveryDayLog/2023/11/22.txt @@ -0,0 +1,65 @@ +2023/11/22 13:30:07: ExecuteReaderError:MySql.Data.MySqlClient.MySqlException (0x80004005): Authentication to host '127.0.0.1' for user 'root' using method 'mysql_native_password' failed with message: Access denied for user 'root'@'localhost' (using password: YES) ---> MySql.Data.MySqlClient.MySqlException (0x80004005): Access denied for user 'root'@'localhost' (using password: YES) + 在 MySql.Data.MySqlClient.MySqlStream.d__30.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.NativeDriver.d__34.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.d__23.MoveNext() + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.AuthenticationFailed(MySqlException ex) + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.d__23.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task) + 在 MySql.Data.MySqlClient.Authentication.MySqlAuthenticationPlugin.d__21.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.NativeDriver.d__40.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 System.Runtime.CompilerServices.ConfiguredTaskAwaitable.ConfiguredTaskAwaiter.GetResult() + 在 MySql.Data.MySqlClient.NativeDriver.d__38.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.ExceptionServices.ExceptionDispatchInfo.Throw() + 在 MySql.Data.MySqlClient.NativeDriver.d__38.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.Driver.d__76.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.Driver.d__74.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 MySql.Data.MySqlClient.Driver.d__74.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__31.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__30.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__34.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlPool.d__35.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.ValidateEnd(Task task) + 在 MySql.Data.MySqlClient.MySqlConnection.d__91.MoveNext() +--- 引发异常的上一位置中堆栈跟踪的末尾 --- + 在 System.Runtime.CompilerServices.TaskAwaiter.ThrowForNonSuccess(Task task) + 在 System.Runtime.CompilerServices.TaskAwaiter.HandleNonSuccessAndDebuggerNotification(Task task) + 在 MySql.Data.MySqlClient.MySqlConnection.Open() + 在 ZTTMS_Manage_ZDPLFZ_20231017.MySQL.ExecuteReader(String strSQL) 位置 F:\Code\zhedapiaoliufuzi\20221201_PLFB_upperpc_4G\ZTTMS_Manage_ZDPLFZ_20231017\ZTTMS_Manage_ZDPLFZ_20231017\MySQL.cs:行号 476 diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe index 521ae72..53e8a46 100644 Binary files a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe and b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe differ diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb index 45b1732..68c4e64 100644 Binary files a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb and b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/bin/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb differ diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe index 521ae72..53e8a46 100644 Binary files a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe and b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.exe differ diff --git a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb index 45b1732..68c4e64 100644 Binary files a/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb and b/ZTTMS_Manage_ZDPLFZ_20231017/ZTTMS_Manage_ZDPLFZ_20231017/obj/Debug/ZTTMS_Manage_ZDPLFZ_20231017.pdb differ