diff options
author | randomdan <randomdan@localhost> | 2011-02-17 20:42:53 +0000 |
---|---|---|
committer | randomdan <randomdan@localhost> | 2011-02-17 20:42:53 +0000 |
commit | c5f116af8c044883edf44311173a0c6c017b7d59 (patch) | |
tree | 1ec836764f704d6b39ad52bdddda7fcd35d642f5 /libpqpp/modifycommand.h | |
parent | Fixes to compile with all gcc warnings as errors (diff) | |
download | libdbpp-postgresql-c5f116af8c044883edf44311173a0c6c017b7d59.tar.bz2 libdbpp-postgresql-c5f116af8c044883edf44311173a0c6c017b7d59.tar.xz libdbpp-postgresql-c5f116af8c044883edf44311173a0c6c017b7d59.zip |
Add check function for when a connection is finished with, but you don't want to close it
Use prepared statements only for modifications, use fetch instead for selects (doesn't load an entire record set)
Support varchar oid
Diffstat (limited to 'libpqpp/modifycommand.h')
-rw-r--r-- | libpqpp/modifycommand.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/libpqpp/modifycommand.h b/libpqpp/modifycommand.h index a9cdbef..8f63a2e 100644 --- a/libpqpp/modifycommand.h +++ b/libpqpp/modifycommand.h @@ -12,6 +12,11 @@ namespace PQ { virtual ~ModifyCommand(); unsigned int execute(bool); + + private: + const std::string stmntName; + void prepare() const; + mutable bool prepared; }; } |