diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-06 02:11:57 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2017-01-08 19:33:31 +0000 |
commit | 9758d7cdc98f0d948581fb5630c33e98e4b52855 (patch) | |
tree | 08f603e35235f8c8fb8d0da022830138f952fddf /libpqpp/pq-cursorselectcommand.cpp | |
parent | Fix bug where prepared statement cache wasn't cleared on connection reset lea... (diff) | |
download | libdbpp-postgresql-9758d7cdc98f0d948581fb5630c33e98e4b52855.tar.bz2 libdbpp-postgresql-9758d7cdc98f0d948581fb5630c33e98e4b52855.tar.xz libdbpp-postgresql-9758d7cdc98f0d948581fb5630c33e98e4b52855.zip |
Use SQL hash for prepared statement names, increases reuse and avoids random reuse
Diffstat (limited to 'libpqpp/pq-cursorselectcommand.cpp')
-rw-r--r-- | libpqpp/pq-cursorselectcommand.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/libpqpp/pq-cursorselectcommand.cpp b/libpqpp/pq-cursorselectcommand.cpp index d130b89..d754680 100644 --- a/libpqpp/pq-cursorselectcommand.cpp +++ b/libpqpp/pq-cursorselectcommand.cpp @@ -7,10 +7,10 @@ AdHocFormatter(PQCursorSelectDeclare, "DECLARE %? CURSOR FOR "); AdHocFormatter(PQCursorSelectFetch, "FETCH %? IN %?"); AdHocFormatter(PQCursorSelectClose, "CLOSE %?"); -PQ::CursorSelectCommand::CursorSelectCommand(Connection * conn, const std::string & sql, unsigned int no, const PQ::CommandOptions * pqco) : +PQ::CursorSelectCommand::CursorSelectCommand(Connection * conn, const std::string & sql, const PQ::CommandOptions * pqco, const DB::CommandOptions * opts) : DB::Command(sql), PQ::SelectBase(sql), - PQ::Command(conn, sql, no), + PQ::Command(conn, sql, opts), executed(false), txOpened(false), fTuples(pqco ? pqco->fetchTuples : 35), |