From 11a170b25006f8a1546ab575c668fd95b49a43f7 Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Sat, 8 Sep 2012 02:30:32 +0000 Subject: Remove call to sending query parameters as binary until it's implemented. --- Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m') diff --git a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m index c8207dd9..7a220816 100644 --- a/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m +++ b/Frameworks/PostgresKit/Source/FLXPostgresConnectionQueryExecution.m @@ -153,9 +153,9 @@ FLXQueryParamData; [FLXPostgresException raise:FLXPostgresConnectionErrorDomain reason:[NSString stringWithFormat:@"Parameter $%u unsupported class %@", (i + 1), NSStringFromClass([nativeObject class])]]; return nil; } - + + NSData *data = nil; // Sending parameters as binary is not implemented yet FLXPostgresOid type = 0; - NSData *data = [typeHandler remoteDataFromObject:nativeObject type:&type]; if (!data) { [self _destroyParamDataStructure:paramData]; -- cgit v1.2.3