From 901180573c489a08ac4f22a05c0a80bc51307d5f Mon Sep 17 00:00:00 2001 From: stuconnolly Date: Thu, 27 Sep 2012 22:49:52 +0000 Subject: Add a binary data handler. --- Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m') diff --git a/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m b/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m index ddd6e745..22394d88 100644 --- a/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m +++ b/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m @@ -23,6 +23,7 @@ #import "PGPostgresTypeStringHandler.h" #import "PGPostgresTypeNumberHandler.h" #import "PGPostgresTypeDateTimeHandler.h" +#import "PGPostgresTypeBinaryHandler.h" #import "PGPostgresException.h" @implementation PGPostgresConnection (PGPostgresConnectionTypeHandling) @@ -41,6 +42,7 @@ [self registerTypeHandler:[PGPostgresTypeStringHandler class]]; [self registerTypeHandler:[PGPostgresTypeNumberHandler class]]; [self registerTypeHandler:[PGPostgresTypeDateTimeHandler class]]; + [self registerTypeHandler:[PGPostgresTypeBinaryHandler class]]; } /** -- cgit v1.2.3