/* $Id: Pg.h,v 1.14 2006/04/05 14:47:13 turnstep Exp $ Copyright (c) 2000-2006 PostgreSQL Global Development Group Copyright (c) 1997-2000 Edmund Mergl Portions Copyright (c) 1994-1997 Tim Bunce You may distribute under the terms of either the GNU General Public License or the Artistic License, as specified in the Perl README file. */ #ifdef WIN32 static int errno; #endif #define DBDPG_TRUE (bool)1 #define DBDPG_FALSE (bool)0 #include "libpq-fe.h" #ifdef NEVER #include #include "libpq/libpq-fs.h" #endif #ifndef INV_READ #define INV_READ 0x00040000 #endif #ifndef INV_WRITE #define INV_WRITE 0x00020000 #endif #ifdef BUFSIZ #undef BUFSIZ #endif /* this should improve I/O performance for large objects */ #define BUFSIZ 32768 #define NEED_DBIXS_VERSION 93 #include /* installed by the DBI module */ #include /* installed by the DBI module */ #include "dbdimp.h" #include "quote.h" #include "types.h" /* defines for Driver.xst to let it know what functions to include */ #define dbd_st_rows dbd_st_rows #define dbd_discon_all dbd_discon_all #define dbd_st_fetchrow_hashref valid /* end of Pg.h */