mirror of
https://github.com/gnustep/libs-gdl2.git
synced 2025-02-21 02:20:55 +00:00
* EOAdaptors/Postgres95/Postgres95SQLExpression.m
([Postgres95SQLExpression dropDatabaseStatementsForConnectionDictionary: administrativeConnectionDictionary:]): Remove excess quotes. git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gdl2/trunk@18784 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
f849fd9df3
commit
16525edb69
2 changed files with 6 additions and 2 deletions
|
@ -13,7 +13,11 @@
|
|||
|
||||
* EOAdaptors/Postgres95/LoginPanel/GNUmakefile: Correct comment
|
||||
identifier. Include config.mak and other potential makefiles.
|
||||
|
||||
|
||||
* EOAdaptors/Postgres95/Postgres95SQLExpression.m
|
||||
([Postgres95SQLExpression
|
||||
dropDatabaseStatementsForConnectionDictionary:
|
||||
administrativeConnectionDictionary:]): Remove excess quotes.
|
||||
|
||||
2003-03-06 Matt Rice <ratmice@yahoo.com>
|
||||
|
||||
|
|
|
@ -344,7 +344,7 @@ RCS_ID("$Id$")
|
|||
databaseName = [connDict objectForKey: @"databaseName"];
|
||||
expr = [self expressionForString: nil];
|
||||
databaseName = [expr sqlStringForSchemaObjectName: databaseName];
|
||||
stmt = [NSString stringWithFormat:@"DROP DATABASE \"%@\"", databaseName];
|
||||
stmt = [NSString stringWithFormat:@"DROP DATABASE %@", databaseName];
|
||||
[expr setStatement: stmt];
|
||||
newArray = [NSArray arrayWithObject: expr];
|
||||
|
||||
|
|
Loading…
Reference in a new issue