summaryrefslogtreecommitdiff
path: root/libpqpp/pq-bulkselectcommand.cpp
Commit message (Collapse)AuthorAge
* Don't use &vector.front() for vector which might be emptylibdbpp-postgresql-1.4.9Dan Goodliffe2023-04-21
| | | | Instead just use .data() which safely returns something which might be nullptr, but that's fine.
* First commit passing IWYUDan Goodliffe2021-09-21
|
* Add JT recommended warningsDan Goodliffe2021-09-18
|
* Clang formatDan Goodliffe2020-11-18
|
* Modernize clang tidy fixesDan Goodliffe2019-02-16
|
* C++17libdbpp-postgresql-1.2.0Dan Goodliffe2018-04-09
| | | | Updates to include C++17 changes for command options.
* Support fetching data in binary format (no numeric, datetime, interval ↵Dan Goodliffe2017-06-05
| | | | support yet)
* Add support for bytea / blob type dataDan Goodliffe2017-06-05
|
* Use SQL hash for prepared statement names, increases reuse and avoids random ↵Dan Goodliffe2017-01-08
| | | | reuse
* Refactor to remove some duplicationDan Goodliffe2017-01-03
|
* Use command options statement hash when it's availableDan Goodliffe2017-01-01
|
* Use prepared statements for bulk selectsDan Goodliffe2016-04-24
|
* Support bulk selects which don't use cursors, always use of RETURNINGDan Goodliffe2016-04-24