Fixed bug with checking if a table exists or not. Bumped version to 1.0.4

This commit is contained in:
MattMo 2023-01-31 13:41:58 -08:00
parent 287cb2d43d
commit 74ffdebee3
2 changed files with 2 additions and 2 deletions

View File

@ -378,7 +378,7 @@ namespace MontoyaTech.MySqlPlus
var builder = new StringBuilder();
//Write the delete from section
builder.Append($"SHOW TABLES LIKE `{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? type.Name : rowAttribute.Name)}`");
builder.Append($"SHOW TABLES LIKE '{(rowAttribute == null || string.IsNullOrWhiteSpace(rowAttribute.Name) ? type.Name : rowAttribute.Name)}'");
//Set the command text
command.CommandText = builder.ToString();

View File

@ -7,7 +7,7 @@
<AssemblyName>MontoyaTech.MySqlPlus</AssemblyName>
<RootNamespace>MontoyaTech.MySqlPlus</RootNamespace>
<Title>MontoyaTech.MySqlPlus</Title>
<Version>1.0.3</Version>
<Version>1.0.4</Version>
<Company>MontoyaTech</Company>
<Description>A simple C# library to help work with MySql.</Description>
<Copyright>MontoyaTech 2023</Copyright>