diff --git a/ChangeLog b/ChangeLog index b8cc0ec..b157e0a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -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 diff --git a/EOAdaptors/Postgres95/Postgres95SQLExpression.m b/EOAdaptors/Postgres95/Postgres95SQLExpression.m index 9e360ac..d536d39 100644 --- a/EOAdaptors/Postgres95/Postgres95SQLExpression.m +++ b/EOAdaptors/Postgres95/Postgres95SQLExpression.m @@ -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];