* 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:
David Ayers 2004-03-06 14:00:05 +00:00
parent f849fd9df3
commit 16525edb69
2 changed files with 6 additions and 2 deletions

View file

@ -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>

View file

@ -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];