Skip to content

Commit

Permalink
Fix: Identifier's should be properly escaped for postgres
Browse files Browse the repository at this point in the history
  • Loading branch information
AllanJard committed May 20, 2021
1 parent 76c15b3 commit b21858b
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions DataTables-Editor-Server/DataBaseUtil/Postgres/Query.cs
Expand Up @@ -25,6 +25,8 @@ public Query(Database db, string type)

override internal string _fieldQuote { get { return "\""; } }

internal override string[] _identifierLimiter => new[] { "\"", "\"" };


/// <summary>
/// Bind parameters to the SQL statement
Expand Down

0 comments on commit b21858b

Please sign in to comment.