diff options
author | Bibiko <bibiko@eva.mpg.de> | 2010-01-12 14:01:31 +0000 |
---|---|---|
committer | Bibiko <bibiko@eva.mpg.de> | 2010-01-12 14:01:31 +0000 |
commit | 625538d64c9ab239175c614f20792f284c55514b (patch) | |
tree | 5e475e127afbad191ac01971c7d8903830fe0dd7 | |
parent | 23ec698784a8c6bd14d001e738205f2931478677 (diff) | |
download | sequelpro-625538d64c9ab239175c614f20792f284c55514b.tar.gz sequelpro-625538d64c9ab239175c614f20792f284c55514b.tar.bz2 sequelpro-625538d64c9ab239175c614f20792f284c55514b.zip |
• fixed: escape new entered comments in the Table Info Pane before applying changes to the db
-rw-r--r-- | Source/SPExtendedTableInfo.m | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/SPExtendedTableInfo.m b/Source/SPExtendedTableInfo.m index e07eb17c..8b414219 100644 --- a/Source/SPExtendedTableInfo.m +++ b/Source/SPExtendedTableInfo.m @@ -345,7 +345,7 @@ if (![currentComment isEqualToString:newComment]) { // Alter table's comment - [connection queryString:[NSString stringWithFormat:@"ALTER TABLE %@ COMMENT = '%@'", [selectedTable backtickQuotedString], newComment]]; + [connection queryString:[NSString stringWithFormat:@"ALTER TABLE %@ COMMENT = '%@'", [selectedTable backtickQuotedString], [connection prepareString:newComment]]]; if ([connection getLastErrorID] == 0) { // Reload the table's data |