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.
This commit is contained in:
parent
a796113329
commit
08113eef6e
@ -7,7 +7,7 @@
|
|||||||
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
|
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
|
||||||
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
|
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
|
||||||
<Title>MontoyaTech.MySqlPlus</Title>
|
<Title>MontoyaTech.MySqlPlus</Title>
|
||||||
<Version>1.1.6</Version>
|
<Version>1.1.7</Version>
|
||||||
<Company>MontoyaTech</Company>
|
<Company>MontoyaTech</Company>
|
||||||
<Description>A simple C# library to help work with MySql.</Description>
|
<Description>A simple C# library to help work with MySql.</Description>
|
||||||
<Copyright>MontoyaTech 2023</Copyright>
|
<Copyright>MontoyaTech 2023</Copyright>
|
||||||
@ -27,7 +27,7 @@
|
|||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
<PackageReference Include="MySql.Data" Version="8.0.32" />
|
<PackageReference Include="MySql.Data" Version="8.3.0" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
|
|
||||||
</Project>
|
</Project>
|
||||||
|
@ -69,14 +69,17 @@ namespace MontoyaTech.MySqlPlus
|
|||||||
|
|
||||||
this.Connection.ExecuteNonQuery(command);
|
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 (row.GetMySqlPrimaryKey(out FieldInfo primaryField, out MySqlColumn primaryColumn))
|
||||||
|
{
|
||||||
|
if (primaryColumn.AutoIncrement)
|
||||||
{
|
{
|
||||||
if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64)
|
if (Type.GetTypeCode(primaryField.FieldType) == TypeCode.UInt64)
|
||||||
primaryField.SetValue(row, (ulong)command.LastInsertedId);
|
primaryField.SetValue(row, (ulong)command.LastInsertedId);
|
||||||
else
|
else
|
||||||
primaryField.SetValue(row, command.LastInsertedId);
|
primaryField.SetValue(row, command.LastInsertedId);
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return (ulong)command.LastInsertedId;
|
return (ulong)command.LastInsertedId;
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user