From 74ffdebee30186aab5b61e2b84364abb4b85dfcc Mon Sep 17 00:00:00 2001 From: MattMo Date: Tue, 31 Jan 2023 13:41:58 -0800 Subject: [PATCH] Fixed bug with checking if a table exists or not. Bumped version to 1.0.4 --- MySqlPlus/MySqlCommandExtensions.cs | 2 +- MySqlPlus/MySqlPlus.csproj | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/MySqlPlus/MySqlCommandExtensions.cs b/MySqlPlus/MySqlCommandExtensions.cs index 465c590..78e4f4b 100644 --- a/MySqlPlus/MySqlCommandExtensions.cs +++ b/MySqlPlus/MySqlCommandExtensions.cs @@ -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(); diff --git a/MySqlPlus/MySqlPlus.csproj b/MySqlPlus/MySqlPlus.csproj index bdd946a..1334d62 100644 --- a/MySqlPlus/MySqlPlus.csproj +++ b/MySqlPlus/MySqlPlus.csproj @@ -7,7 +7,7 @@ MontoyaTech.MySqlPlus MontoyaTech.MySqlPlus MontoyaTech.MySqlPlus - 1.0.3 + 1.0.4 MontoyaTech A simple C# library to help work with MySql. MontoyaTech 2023