We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d828d2 commit dbce6b5Copy full SHA for dbce6b5
source/table_editor.pas
@@ -523,7 +523,10 @@ function TfrmTableEditor.ApplyModifications: TModalResult;
523
end;
524
// Rename table
525
if ObjectExists and (editName.Text <> DBObject.Name) then begin
526
- Rename := DBObject.Connection.SqlProvider.GetSql(qRenameTable, [DBObject.QuotedName, DBObject.Connection.QuoteIdent(editName.Text)]);
+ Rename := DBObject.Connection.SqlProvider.GetSql(qRenameTable, [
527
+ DBObject.QuotedName(True, False),
528
+ DBObject.Connection.QuoteIdent(editName.Text)
529
+ ]);
530
DBObject.Connection.Query(Rename);
531
DBObject.Connection.ShowWarnings;
532
0 commit comments