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 153e61d commit a763fd1Copy full SHA for a763fd1
source/table_editor.pas
@@ -529,7 +529,10 @@ function TfrmTableEditor.ApplyModifications: TModalResult;
529
end;
530
// Rename table
531
if ObjectExists and (editName.Text <> DBObject.Name) then begin
532
- Rename := DBObject.Connection.SqlProvider.GetSql(qRenameTable, [DBObject.QuotedName, DBObject.Connection.QuoteIdent(editName.Text)]);
+ Rename := DBObject.Connection.SqlProvider.GetSql(qRenameTable, [
533
+ DBObject.QuotedName(True, False),
534
+ DBObject.Connection.QuoteIdent(editName.Text)
535
+ ]);
536
DBObject.Connection.Query(Rename);
537
DBObject.Connection.ShowWarnings;
538
0 commit comments