Author: turnstep
Date: Sun May 25 06:20:28 2008
New Revision: 11312
Modified:
DBD-Pg/trunk/TODO
DBD-Pg/trunk/dbdimp.h
Log:
Drop multi-statement idea from TODO: very expensive and fairly useless.
Modified: DBD-Pg/trunk/TODO
==============================================================================
--- DBD-Pg/trunk/TODO (original)
+++ DBD-Pg/trunk/TODO Sun May 25 06:20:28 2008
@@ -16,5 +16,4 @@
- Remove libpq dependency
- Handle and/or better tests for different encoding, especially those not
supported as a server encoding (e.g. BIG5)
-- Add a mode to disallow multi-statement strings
Modified: DBD-Pg/trunk/dbdimp.h
==============================================================================
--- DBD-Pg/trunk/dbdimp.h (original)
+++ DBD-Pg/trunk/dbdimp.h Sun May 25 06:20:28 2008
@@ -22,11 +22,11 @@
bool pg_enable_utf8; /* should we attempt to make utf8 strings?
Set by user, default is 0 */
bool prepare_now; /* force immediate prepares, even with
placeholders. Set by user, default is 0 */
bool done_begin; /* have we done a begin? (e.g. are we in a
transaction?) */
- bool dollaronly; /* Only consider $1, $2 ... as valid
placeholders */
- bool expand_array; /* Transform arrays from the db into Perl
arrays? Default is 1 */
+ bool dollaronly; /* only consider $1, $2 ... as valid
placeholders */
+ bool expand_array; /* transform arrays from the db into Perl
arrays? Default is 1 */
int pg_protocol; /* value of PQprotocolVersion, usually 3
(could also be 0) */
- int pg_server_version; /* Server version e.g. 80100 */
+ int pg_server_version; /* server version e.g. 80100 */
int pid_number; /* prefixed before prepare_number */
int prepare_number; /* internal prepared statement name modifier
*/
int copystate; /* 0=none PGRES_COPY_IN PGRES_COPY_OUT */