fix #3653 - mySQL installation failing on Rows reserved word

This commit is contained in:
sbwalker
2024-01-25 10:59:18 -05:00
parent 38a5cc33e8
commit 7c6424e05c
4 changed files with 22 additions and 2 deletions

View File

@ -66,6 +66,11 @@ namespace Oqtane.Databases
return name;
}
public virtual string RewriteName(string name, bool isQuery)
{
return name;
}
public virtual string RewriteValue(string value, string type)
{
return value;