From 08113eef6e2d738405ede868a66f6152342ae528 Mon Sep 17 00:00:00 2001 From: MattMo Date: Sat, 16 Mar 2024 09:31:33 -0700 Subject: [PATCH] Upgraded to latest version of MySql.Data package. Added code to not try set the value of the primary key if it's not auto increment. --- MySqlPlus/MySqlPlus.csproj | 4 ++-- MySqlPlus/MySqlSession.cs | 13 ++++++++----- 2 files changed, 10 insertions(+), 7 deletions(-) diff --git a/MySqlPlus/MySqlPlus.csproj b/MySqlPlus/MySqlPlus.csproj index c1a3996..957604c 100644 --- a/MySqlPlus/MySqlPlus.csproj +++ b/MySqlPlus/MySqlPlus.csproj @@ -7,7 +7,7 @@ MontoyaTech.MySqlPlus MontoyaTech.MySqlPlus MontoyaTech.MySqlPlus - 1.1.6 + 1.1.7 MontoyaTech A simple C# library to help work with MySql. MontoyaTech 2023 @@ -27,7 +27,7 @@ - + diff --git a/MySqlPlus/MySqlSession.cs b/MySqlPlus/MySqlSession.cs index 05c015c..02c91f8 100644 --- a/MySqlPlus/MySqlSession.cs +++ b/MySqlPlus/MySqlSession.cs @@ -69,13 +69,16 @@ namespace MontoyaTech.MySqlPlus this.Connection.ExecuteNonQuery(command); - //Update the primary key value on the row if we can find it. + //Update the primary key value on the row if it auto increments. if (row.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn)) { - if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64) - primaryField.SetValue(row, (ulong)command.LastInsertedId); - else - primaryField.SetValue(row, command.LastInsertedId); + if (primaryColumn.AutoIncrement) + { + if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64) + primaryField.SetValue(row, (ulong)command.LastInsertedId); + else + primaryField.SetValue(row, command.LastInsertedId); + } } return (ulong)command.LastInsertedId;