Fixed bug with checking if a table exists or not. Bumped version to 1.0.4
This commit is contained in:
parent
287cb2d43d
commit
74ffdebee3
@ -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();
|
||||
|
@ -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>
|
||||
|
Loading…
x
Reference in New Issue
Block a user