aboutsummaryrefslogtreecommitdiffstats
path: root/Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m
diff options
context:
space:
mode:
authorstuconnolly <stuart02@gmail.com>2012-09-27 22:49:52 +0000
committerstuconnolly <stuart02@gmail.com>2012-09-27 22:49:52 +0000
commit901180573c489a08ac4f22a05c0a80bc51307d5f (patch)
tree27f7cac294c36bbe3b6900a003aea95d777462e6 /Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m
parenta12ab1dd775188342087b848653565d227dd8ecb (diff)
downloadsequelpro-901180573c489a08ac4f22a05c0a80bc51307d5f.tar.gz
sequelpro-901180573c489a08ac4f22a05c0a80bc51307d5f.tar.bz2
sequelpro-901180573c489a08ac4f22a05c0a80bc51307d5f.zip
Add a binary data handler.
Diffstat (limited to 'Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m')
-rw-r--r--Frameworks/PostgresKit/Source/PGPostgresConnectionTypeHandling.m2
1 files changed, 2 insertions, 0 deletions
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]];
}
/**