diff --git a/src/sqlitedb.cpp b/src/sqlitedb.cpp index 801bdd9c4..416408604 100644 --- a/src/sqlitedb.cpp +++ b/src/sqlitedb.cpp @@ -1168,7 +1168,7 @@ bool DBBrowserDB::renameColumn(const sqlb::ObjectIdentifier& tablename, const sq // Copy the data from the old table to the new one if(!executeSQL(QString("INSERT INTO %1.sqlitebrowser_rename_column_new_table SELECT %2 FROM %3;") - .arg(newSchemaName) + .arg(sqlb::escapeIdentifier(newSchemaName)) .arg(select_cols) .arg(tablename.toString()))) {