summaryrefslogtreecommitdiff
path: root/libpqpp/pq-cursorselectcommand.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.
* Add missing includeDan Goodliffe2022-03-19
|
* Use stringstream string c_str by moveDan Goodliffe2022-03-19
|
* First commit passing IWYUDan Goodliffe2021-09-21
|
* Add JT recommended warningsDan Goodliffe2021-09-18
|
* Clang formatDan Goodliffe2020-11-18
|
* Tidy fixes for latest clanglibdbpp-postgresql-1.4.1Dan Goodliffe2019-03-30
|
* 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.
* Transactionless cursor selectsDan Goodliffe2018-04-01
| | | | | | | | | Remove the need to open a transaction for a cursor select by specifying them as WITH HOLD. Also add NO SCROLL as it's a feature we don't actually use. Updates tests with loops to ensure we haven't broken the ability to re-use / re-create statements.
* 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
* Add PQ specific command options to control page size and the use of bulk -v- ↵Dan Goodliffe2017-01-04
| | | | cursor selects
* C++ify the SQL preparer and skip it if no variables are being boundDan Goodliffe2017-01-04
|
* Tidy clearing of PGresultsDan Goodliffe2017-01-04
|
* No need for 1 line wrappers anymoreDan Goodliffe2017-01-03
|
* Refactor to remove some duplicationDan Goodliffe2017-01-03
|
* Do lots more work with compile time formatter instead runtime formattersDan Goodliffe2016-12-31
|
* Introduce select base for different kinds of selectDan Goodliffe2016-04-24
|
* Rename SelectCommand to CursorSelectCommandDan Goodliffe2016-04-24