--- /srv/rebuilderd/tmp/rebuilderdr8x7dS/inputs/libpqxx-doc_7.10.0-2_all.deb
+++ /srv/rebuilderd/tmp/rebuilderdr8x7dS/out/libpqxx-doc_7.10.0-2_all.deb
├── file list
│ @@ -1,3 +1,3 @@
│ -rw-r--r-- 0 0 0 4 2025-01-23 16:15:05.000000 debian-binary
│ --rw-r--r-- 0 0 0 32396 2025-01-23 16:15:05.000000 control.tar.xz
│ --rw-r--r-- 0 0 0 2604916 2025-01-23 16:15:05.000000 data.tar.xz
│ +-rw-r--r-- 0 0 0 32320 2025-01-23 16:15:05.000000 control.tar.xz
│ +-rw-r--r-- 0 0 0 2604756 2025-01-23 16:15:05.000000 data.tar.xz
├── control.tar.xz
│ ├── control.tar
│ │ ├── ./md5sums
│ │ │ ├── ./md5sums
│ │ │ │┄ Files differ
├── data.tar.xz
│ ├── data.tar
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/accessing-results.html
│ │ │ @@ -104,27 +104,27 @@
│ │ │
for (auto [id, value] :
│ │ │
tx.query<int, std::string>("SELECT id, name FROM item"))
│ │ │
{
│ │ │
std::cout << id << '\t' << value << '\n';
│ │ │
}
│ │ │
The "query" functions execute your query, load the complete result data from the database, and then as you iterate, convert each row it received to a tuple of C++ types that you indicated.
│ │ │ There are different query functions for querying any number of rows (query()
); querying just one row of data as a std::tuple
and throwing an error if there's more than one row (query1()
); or querying
│ │ │ -
│ │ │ +
│ │ │ Streaming rows
│ │ │
There's another way to go through the rows coming out of a query. It's usually easier and faster if there are a lot of rows, but there are drawbacks.
│ │ │ One, you start getting rows before all the data has come in from the database. That speeds things up, but what happens if you lose your network connection while transferring the data? Your application may already have processed some of the data before finding out that the rest isn't coming. If that is a problem for your application, streaming may not be the right choice.
│ │ │ Two, streaming only works for some types of query. The stream()
function wraps your query in a PostgreSQL COPY
command, and COPY
only supports a few commands: SELECT
, VALUES
, or an INSERT
, UPDATE
, or DELETE
with a RETURNING
clause. See the COPY
documentation here: [ https://www.postgresql.org/docs/current/sql-copy.html ](https://www.postgresql.org/docs/current/sql-copy.html).
│ │ │ Three, when you convert a field to a "view" type (such as std::string_view
or pqxx::bytes_view
), the view points to underlying data which only stays valid until you iterate to the next row or exit the loop. So if you want to use that data for longer than a single iteration of the streaming loop, you'll have to store it somewhere yourself.
│ │ │ Now for the good news. Streaming does make it very easy to query data and loop over it, and often faster than with the "query" or "exec" functions:
│ │ │ for (auto [id, name, x, y] :
│ │ │
tx.stream<int, std::string_view, float, float>(
│ │ │
"SELECT id, name, x, y FROM point"))
│ │ │
process(id + 1, "point-" + name, x * 10.0, y * 10.0);
│ │ │
The conversion to C++ types (here int
, std::string_view
, and two float
s) is built into the function. You never even see row
objects, field
objects, iterators, or conversion methods. You just put in your query and you receive your data.
│ │ │ -
│ │ │ +
│ │ │ Results with metadata
│ │ │
Sometimes you want more from a query result than just rows of data. You may need to know right away how many rows of result data you received, or how many rows your UPDATE
statement has affected, or the names of the columns, etc.
│ │ │ For that, use the transaction's "exec" query execution functions. Apart from a few exceptions, these return a pqxx::result
object. A result
is a container of pqxx::row
objects, so you can iterate them as normal, or index them like you would index an array. Each row
in turn is a container of pqxx::field
, Each field
holds a value, but doesn't know its type. You specify the type when you read the value.
│ │ │ For example, your code might do:
│ │ │
│ │ │
for (auto const &row: r)
│ │ │
{
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/binary.html
│ │ │ @@ -103,15 +103,15 @@
│ │ │
std::string hi{"Hello binary world"};
│ │ │
│ │ │
bytes_view binary_cast(TYPE const &data)
Cast binary data to a type that libpqxx will recognise as binary.
Definition util.hxx:409
│ │ │
The other takes a pointer and a size:
│ │ │
char const greeting[] = "Hello binary world";
│ │ │
char const *hi = greeting;
│ │ │
│ │ │ -
│ │ │ +
│ │ │ Caveats
│ │ │ There are some restrictions on binary_cast
that you must be aware of.
│ │ │ First, your data must of a type that gives us bytes. So: char
, unsigned char
, signed char
, int8_t
, uint8_t
, or of course std::byte
. You can't feed in a vector of double
, or anything like that.
│ │ │ Second, the data must be laid out as a contiguous block in memory. If there's no std::data()
implementation for your type, it's not suitable.
│ │ │ Third, binary_cast
only constructs something like a std::string_view
. It does not make a copy of your actual data. So, make sure that your data remains alive and in the same place while you're using it.
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1array__parser.html
│ │ │ @@ -122,15 +122,15 @@
│ │ │ |
│ │ │ std::pair< juncture, std::string > | get_next () |
│ │ │ | Parse the next step in the array.
|
│ │ │ |
│ │ │
│ │ │
│ │ │ Low-level parser for C++ arrays.
│ │ │ -
- Deprecated:
- Use pqxx::array instead.
│ │ │ +
- Deprecated:
- Use pqxx::array instead.
│ │ │
Clunky old API for parsing SQL arrays.
│ │ │
- Warning
- This parser will only work reliably if your client encoding is UTF-8, ASCII, or a "safe ASCII superset" (such as the EUC encodings) where a byte value in the ASCII range can only occur as an actual ASCII character, never as one byte in a multi-byte character.
│ │ │ -
│ │ │ The parser only supports array element types which use a comma (‘’,'
) as the separator between array elements. All built-in SQL types use comma, except for
box` which uses semicolon. However some custom types may not work.
│ │ │
The input is a C-style string containing the textual representation of an array, as returned by the database. The parser reads this representation on the fly. The string must remain in memory until parsing is done.
│ │ │
Parse the array by making calls to get_next until it returns a juncture of done
. The juncture tells you what the parser found in that step: did the array "nest" to a deeper level, or "un-nest" back up?
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1basic__ilostream.html
│ │ │ @@ -151,15 +151,15 @@
│ │ │ | basic_ilostream (dbtransaction &t, oid o, largeobject::size_type buf_size=512) |
│ │ │ | Create a basic_ilostream.
|
│ │ │ |
│ │ │
│ │ │
│ │ │ template<typename CHAR = char, typename TRAITS = std::char_traits<CHAR>>
│ │ │ class pqxx::basic_ilostream< CHAR, TRAITS >
Input stream that gets its data from a large object.
│ │ │ -
- Deprecated:
- Access large objects directly using the blob class.
│ │ │ +
- Deprecated:
- Access large objects directly using the blob class.
│ │ │
This class worked like any other istream, but to read data from a large object. It supported all formatting and streaming operations of std::istream
.
│ │ │
This functionality was considered too fragile and complex, so it has been replaced with a single, much simpler class.
│ │ │
│ │ │
│ │ │ ◆ basic_ilostream() [1/2]
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1basic__lostream.html
│ │ │ @@ -151,15 +151,15 @@
│ │ │
| basic_lostream (dbtransaction &t, oid o, largeobject::size_type buf_size=512) |
│ │ │
| Create a basic_lostream.
|
│ │ │
|
│ │ │
│ │ │
│ │ │
template<typename CHAR = char, typename TRAITS = std::char_traits<CHAR>>
│ │ │ class pqxx::basic_lostream< CHAR, TRAITS >
Stream that reads and writes a large object.
│ │ │ -
- Deprecated:
- Access large objects directly using the blob class.
│ │ │ +
- Deprecated:
- Access large objects directly using the blob class.
│ │ │
This worked like a std::iostream, but to read data from, or write data to, a large object. It supported all formatting and streaming operations of std::iostream
.
│ │ │
This functionality was considered too fragile and complex, so it has been replaced with a single, much simpler class.
│ │ │
│ │ │
│ │ │
◆ basic_lostream() [1/2]
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1basic__olostream.html
│ │ │ @@ -151,15 +151,15 @@
│ │ │
| basic_olostream (dbtransaction &t, oid o, largeobject::size_type buf_size=512) |
│ │ │
| Create a basic_olostream.
|
│ │ │
|
│ │ │
│ │ │
│ │ │
template<typename CHAR = char, typename TRAITS = std::char_traits<CHAR>>
│ │ │ class pqxx::basic_olostream< CHAR, TRAITS >
Output stream that writes data back to a large object.
│ │ │ -
- Deprecated:
- Access large objects directly using the blob class.
│ │ │ +
- Deprecated:
- Access large objects directly using the blob class.
│ │ │
This worked like any other ostream, but to write data to a large object. It supported all formatting and streaming operations of std::ostream
.
│ │ │
This functionality was considered too fragile and complex, so it has been replaced with a single, much simpler class.
│ │ │
│ │ │
│ │ │
◆ basic_olostream() [1/2]
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1blob.html
│ │ │ @@ -543,15 +543,15 @@
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
Read up to std::size(buf)
bytes from the object.
│ │ │ -
- Deprecated:
- As libpqxx moves to C++20 as its baseline language version, this will take and return
std::span<std::byte>
.
│ │ │ +
- Deprecated:
- As libpqxx moves to C++20 as its baseline language version, this will take and return
std::span<std::byte>
.
│ │ │
Retrieves bytes from the blob, at the current position, until buf
is full (i.e. its current size is reached), or there are no more bytes to read, whichever comes first.
│ │ │
This function will not change either the size or the capacity of buf
, only its contents.
│ │ │
Returns the filled portion of buf
. This may be empty.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1connection.html
│ │ │ @@ -788,15 +788,15 @@
│ │ │
std::vector< pqxx::errorhandler * > pqxx::connection::get_errorhandlers |
│ │ │
( |
│ │ │
| ) |
│ │ │
const |
│ │ │
│ │ │
│ │ │
│ │ │ -
- Deprecated:
- Return pointers to the active errorhandlers.
│ │ │ +
- Deprecated:
- Return pointers to the active errorhandlers.
│ │ │
The entries are ordered from oldest to newest handler.
│ │ │
The pointers point to the real errorhandlers. The container it returns however is a copy of the one internal to the connection, not a reference.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ get_notifs()
│ │ │ @@ -1528,15 +1528,15 @@
│ │ │ ) |
│ │ │ | & |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
Set session variable, using SQL's SET
command.
│ │ │ -
- Deprecated:
- To set a session variable, use set_session_var. To set a transaction-local variable, execute an SQL
SET
command.
│ │ │ +
- Deprecated:
- To set a session variable, use set_session_var. To set a transaction-local variable, execute an SQL
SET
command.
│ │ │
- Warning
- When setting a string value, you must escape and quote it first. Use the quote() function to do that.
│ │ │ -
│ │ │ This executes an SQL query, so do not get or set variables while a table stream or pipeline is active on the same connection.
│ │ │
- Parameters
-
│ │ │
│ │ │ var | Variable to set. |
│ │ │ value | New value for Var. This can be any SQL expression. If it's a string, be sure that it's properly escaped and quoted. |
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1errorhandler.html
│ │ │ @@ -126,15 +126,15 @@
│ │ │ |
│ │ │
│ │ │ class | internal::gate::errorhandler_connection |
│ │ │ |
│ │ │
│ │ │
│ │ │ -- Deprecated:
- Base class for obsolete error-handler callbacks.
│ │ │ +
- Deprecated:
- Base class for obsolete error-handler callbacks.
│ │ │
This method of handling errors is obsolete. Use a "notice handler" instead.
│ │ │
- Warning
- Strange things happen when a result object outlives its parent connection. If you register an error handler on a connection, then you must not access the result after destroying the connection. This applies even if you destroy the error handler first!
│ │ │
│ │ │
│ │ │
◆ errorhandler()
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1internal_1_1dynamic__params.html
│ │ │ @@ -123,15 +123,15 @@
│ │ │
|
│ │ │
│ │ │ constexpr auto | access (decltype(*std::declval< IT >()) value) const -> decltype(std::declval< ACCESSOR >()(value)) |
│ │ │
|
│ │ │
│ │ │
│ │ │
template<typename IT, typename ACCESSOR = decltype(iterator_identity<IT>)>
│ │ │ -class pqxx::internal::dynamic_params< IT, ACCESSOR >
- Deprecated:
- Use params instead.
│ │ │ +class pqxx::internal::dynamic_params< IT, ACCESSOR >
- Deprecated:
- Use params instead.
│ │ │
│ │ │
│ │ │
◆ dynamic_params() [1/2]
│ │ │
│ │ │
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1largeobject.html
│ │ │ @@ -171,15 +171,15 @@
│ │ │
|
│ │ │
│ │ │ PQXX_PRIVATE std::string | reason (connection const &, int err) const |
│ │ │
|
│ │ │
│ │ │
│ │ │
Identity of a large object.
│ │ │ -
- Deprecated:
- Use the blob class instead.
│ │ │ +
- Deprecated:
- Use the blob class instead.
│ │ │
Encapsulates the identity of a large object.
│ │ │
A largeobject must be accessed only from within a backend transaction, but the object's identity remains valid as long as the object exists.
│ │ │
│ │ │
│ │ │
◆ largeobject() [1/5]
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1largeobject__streambuf.html
│ │ │ @@ -190,15 +190,15 @@
│ │ │
│ │ │ virtual int_type | underflow () override |
│ │ │
|
│ │ │
│ │ │
│ │ │
template<typename CHAR = char, typename TRAITS = std::char_traits<CHAR>>
│ │ │ class pqxx::largeobject_streambuf< CHAR, TRAITS >
Streambuf to use large objects in standard I/O streams.
│ │ │ -
- Deprecated:
- Access large objects directly using the blob class.
│ │ │ +
- Deprecated:
- Access large objects directly using the blob class.
│ │ │
The standard streambuf classes provide uniform access to data storage such as files or string buffers, so they can be accessed using standard input or output streams. This streambuf implementation provided similar access to large objects, so they could be read and written using the same stream classes.
│ │ │
This functionality was considered too fragile and complex, so it has been replaced with a single, much simpler class.
│ │ │
│ │ │
│ │ │
◆ default_mode
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1largeobjectaccess.html
│ │ │ @@ -238,15 +238,15 @@
│ │ │
|
│ │ │
bool | operator>= (largeobject const &other) const |
│ │ │
| Compare object identities.
|
│ │ │
|
│ │ │
│ │ │
│ │ │
Accessor for large object's contents.
│ │ │ -
- Deprecated:
- Use the
blob
class instead.
│ │ │ +
- Deprecated:
- Use the
blob
class instead.
│ │ │
│ │ │
│ │ │
◆ openmode
│ │ │
│ │ │
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1params.html
│ │ │ @@ -181,15 +181,15 @@
│ │ │ ( |
│ │ │ binarystring const & |
│ │ │ value | ) |
│ │ │ & |
│ │ │
│ │ │
│ │ │
│ │ │ -
- Deprecated:
- Append binarystring parameter.
│ │ │ +
- Deprecated:
- Append binarystring parameter.
│ │ │
The binarystring must stay valid for as long as the params
remains active.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ append() [2/6]
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1quiet__errorhandler.html
│ │ │ @@ -137,15 +137,15 @@
│ │ │
errorhandler (errorhandler const &)=delete |
│ │ │
|
│ │ │
│ │ │ errorhandler & | operator= (errorhandler const &)=delete |
│ │ │
|
│ │ │
│ │ │
│ │ │ -
- Deprecated:
- Use a notice handler instead.
│ │ │ +
- Deprecated:
- Use a notice handler instead.
│ │ │
│ │ │
│ │ │
◆ operator()()
│ │ │
│ │ │
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1row.html
│ │ │ @@ -497,15 +497,15 @@
│ │ │ |
│ │ │ ) |
│ │ │ | const |
│ │ │
│ │ │
│ │ │
│ │ │
Produce a slice of this row, containing the given range of columns.
│ │ │ -
- Deprecated:
- I haven't heard of anyone caring about row slicing at all in at least the last 15 years. Yet it adds complexity, so unless anyone files a bug explaining why they really need this feature, I'm going to remove it. Even if they do, the feature may need an update.
│ │ │ +
- Deprecated:
- I haven't heard of anyone caring about row slicing at all in at least the last 15 years. Yet it adds complexity, so unless anyone files a bug explaining why they really need this feature, I'm going to remove it. Even if they do, the feature may need an update.
│ │ │
The slice runs from the range's starting column to the range's end column, exclusive. It looks just like a normal result row, except slices can be empty.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ table_column()
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1stream__from.html
│ │ │ @@ -209,15 +209,15 @@
│ │ │
|
│ │ │
static stream_from | table (transaction_base &tx, table_path path, std::initializer_list< std::string_view > columns={}) |
│ │ │
| Factory: Stream data from a given table.
|
│ │ │
|
│ │ │
│ │ │
│ │ │
Stream data from the database.
│ │ │ -
- Deprecated:
- Use transaction_base::stream.
│ │ │ +
- Deprecated:
- Use transaction_base::stream.
│ │ │
For larger data sets, retrieving data this way is likely to be faster than executing a query and then iterating and converting the rows fields. You will also be able to start processing before all of the data has come in.
│ │ │
There are also downsides. Not all kinds of query will work in a stream. But straightforward SELECT
and UPDATE ... RETURNING
queries should work. This function makes use of pqxx::stream_from, which in turn uses PostgreSQL's COPY
command, so see the documentation for those to get the full details.
│ │ │
There are other downsides. If there stream encounters an error, it may leave the entire connection in an unusable state, so you'll have to give the whole thing up. Finally, opening a stream puts the connection in a special state, so you won't be able to do many other things with the connection or the transaction while the stream is open.
│ │ │
There are two ways of starting a stream: you stream either all rows in a table (using one of the factories, table()
or raw_table()
), or the results of a query (using the query()
factory).
│ │ │
Usually you'll want the stream
convenience wrapper in transaction_base, * so you don't need to deal with this class directly.
│ │ │
- Warning
- While a stream is active, you cannot execute queries, open a pipeline, etc. on the same transaction. A transaction can have at most one object of a type derived from pqxx::transaction_focus active on it at a time.
│ │ │
│ │ │ @@ -250,15 +250,15 @@
│ │ │
) |
│ │ │
| |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
Execute query, and stream over the results.
│ │ │ -
- Deprecated:
- Use factory function query instead.
│ │ │ +
- Deprecated:
- Use factory function query instead.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ stream_from() [2/7]
│ │ │
│ │ │
│ │ │ @@ -287,15 +287,15 @@
│ │ │
) |
│ │ │ | |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ stream_from() [3/7]
│ │ │
│ │ │
│ │ │ @@ -346,15 +346,15 @@
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ stream_from() [4/7]
│ │ │
│ │ │
│ │ │ @@ -399,15 +399,15 @@
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
Stream given columns from all rows in table.
│ │ │ -
- Deprecated:
- Use factory function query instead.
│ │ │ +
- Deprecated:
- Use factory function query instead.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ stream_from() [5/7]
│ │ │
│ │ │
│ │ │ @@ -436,15 +436,15 @@
│ │ │
│ │ │
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
◆ stream_from() [6/7]
│ │ │
│ │ │
│ │ │ @@ -481,15 +481,15 @@
│ │ │
│ │ │
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ stream_from() [7/7]
│ │ │
│ │ │
│ │ │ @@ -524,15 +524,15 @@
│ │ │
│ │ │ |
│ │ │ ) |
│ │ │ | |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ complete()
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/classpqxx_1_1stream__to.html
│ │ │ @@ -218,15 +218,15 @@
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
Create a stream, without specifying columns.
│ │ │ -
- Deprecated:
- Use table or raw_table as a factory.
│ │ │ +
- Deprecated:
- Use table or raw_table as a factory.
│ │ │
Fields will be inserted in whatever order the columns have in the database.
│ │ │
You'll probably want to specify the columns, so that the mapping between your data fields and the table is explicit in your code, and not hidden in an "implicit contract" between your code and your schema.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ stream_to() [2/2]
│ │ │ @@ -267,15 +267,15 @@
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ complete()
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/deprecated.html
│ │ │ @@ -91,89 +91,89 @@
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ - Class pqxx::array_parser
│ │ │ -- Use pqxx::array instead.
│ │ │ +- Use pqxx::array instead.
│ │ │ - Class pqxx::basic_fieldstream< CHAR, TRAITS >
│ │ │ - To convert a field's value string to some other type, e.g. to an
int
, use the field's as<...>()
member function. To read a field efficiently just as a string, use its c_str()
or its as<std::string_vview>()
.
│ │ │ - Class pqxx::basic_ilostream< CHAR, TRAITS >
│ │ │ -- Access large objects directly using the blob class.
│ │ │ +- Access large objects directly using the blob class.
│ │ │ - Class pqxx::basic_lostream< CHAR, TRAITS >
│ │ │ -- Access large objects directly using the blob class.
│ │ │ +- Access large objects directly using the blob class.
│ │ │ - Class pqxx::basic_olostream< CHAR, TRAITS >
│ │ │ -- Access large objects directly using the blob class.
│ │ │ +- Access large objects directly using the blob class.
│ │ │ - Class pqxx::binarystring
│ │ │ - Use
bytes
and bytes_view
for binary data. In C++20 or better, any contiguous_range
of std::byte
will do.
│ │ │ - Member pqxx::blob::read (std::vector< std::byte, ALLOC > &buf)
│ │ │ -- As libpqxx moves to C++20 as its baseline language version, this will take and return
std::span<std::byte>
.
│ │ │ +- As libpqxx moves to C++20 as its baseline language version, this will take and return
std::span<std::byte>
.
│ │ │ - Member pqxx::connection::get_errorhandlers () const
│ │ │ -- Return pointers to the active errorhandlers.
│ │ │ +- Return pointers to the active errorhandlers.
│ │ │ - Member pqxx::connection::set_variable (std::string_view var, std::string_view value) &
│ │ │ -- To set a session variable, use set_session_var. To set a transaction-local variable, execute an SQL
SET
command.
│ │ │ +- To set a session variable, use set_session_var. To set a transaction-local variable, execute an SQL
SET
command.
│ │ │ - Member pqxx::connection_base
│ │ │ -- Old base class for connection. They are now the same class.
│ │ │ +- Old base class for connection. They are now the same class.
│ │ │ - Member pqxx::encrypt_password (zview user, zview password)
│ │ │ -- Use connection::encrypt_password instead.
│ │ │ +- Use connection::encrypt_password instead.
│ │ │ - Member pqxx::encrypt_password (char const user[], char const password[])
│ │ │ -- Use connection::encrypt_password instead.
│ │ │ +- Use connection::encrypt_password instead.
│ │ │ - Class pqxx::errorhandler
│ │ │ -- Base class for obsolete error-handler callbacks.
│ │ │ +- Base class for obsolete error-handler callbacks.
│ │ │ - Member pqxx::fieldstream
│ │ │ - Read a field using
field::as<...>()
or field::c_str()
.
│ │ │ - Member pqxx::from_query
│ │ │ -- Use transaction_base::stream instead of stream_from.
│ │ │ +- Use transaction_base::stream instead of stream_from.
│ │ │ - Struct pqxx::from_query_t
│ │ │ -- Use stream_from::query() instead.
│ │ │ +- Use stream_from::query() instead.
│ │ │ - Member pqxx::from_table
│ │ │ -- Use transaction_base::stream instead of stream_from.
│ │ │ +- Use transaction_base::stream instead of stream_from.
│ │ │ - Struct pqxx::from_table_t
│ │ │ -- Use stream_from::table() instead.
│ │ │ +- Use stream_from::table() instead.
│ │ │ - Class pqxx::internal::dynamic_params< IT, ACCESSOR >
│ │ │ -- Use params instead.
│ │ │ +- Use params instead.
│ │ │ - Class pqxx::largeobject
│ │ │ -- Use the blob class instead.
│ │ │ +- Use the blob class instead.
│ │ │ - Class pqxx::largeobject_streambuf< CHAR, TRAITS >
│ │ │ -- Access large objects directly using the blob class.
│ │ │ +- Access large objects directly using the blob class.
│ │ │ - Class pqxx::largeobjectaccess
│ │ │ -- Use the
blob
class instead.
│ │ │ +- Use the
blob
class instead.
│ │ │ - Member pqxx::operator<< (std::basic_ostream< CHAR > &s, field const &value)
│ │ │ - The C++ streams library is not great to work with. In particular, error handling is easy to get wrong. So you're probably better off doing this by hand.
│ │ │ - Member pqxx::params::append (binarystring const &value) &
│ │ │ -- Append binarystring parameter.
│ │ │ +- Append binarystring parameter.
│ │ │ - Namespace pqxx::prepare
│ │ │ -- The new params class replaces all of this.
│ │ │ +- The new params class replaces all of this.
│ │ │ - Class pqxx::quiet_errorhandler
│ │ │ -- Use a notice handler instead.
│ │ │ +- Use a notice handler instead.
│ │ │ - Member pqxx::row::slice (size_type sbegin, size_type send) const
│ │ │ -- I haven't heard of anyone caring about row slicing at all in at least the last 15 years. Yet it adds complexity, so unless anyone files a bug explaining why they really need this feature, I'm going to remove it. Even if they do, the feature may need an update.
│ │ │ +- I haven't heard of anyone caring about row slicing at all in at least the last 15 years. Yet it adds complexity, so unless anyone files a bug explaining why they really need this feature, I'm going to remove it. Even if they do, the feature may need an update.
│ │ │ - Class pqxx::stream_from
│ │ │ -- Use transaction_base::stream.
│ │ │ -- Member pqxx::stream_from::stream_from (transaction_base &tx, from_table_t, std::string_view table, Columns const &columns)
│ │ │ -- Use factory function query instead.
│ │ │ -- Member pqxx::stream_from::stream_from (transaction_base &tx, std::string_view table)
│ │ │ -- Use factories table or raw_table instead.
│ │ │ +- Use transaction_base::stream.
│ │ │ - Member pqxx::stream_from::stream_from (transaction_base &tx, std::string_view table, Columns const &columns)
│ │ │ -- Use factories table or raw_table instead.
│ │ │ +- Use factories table or raw_table instead.
│ │ │ - Member pqxx::stream_from::stream_from (transaction_base &, std::string_view table, Iter columns_begin, Iter columns_end)
│ │ │ -- Use factories table or raw_table instead.
│ │ │ +- Use factories table or raw_table instead.
│ │ │ +- Member pqxx::stream_from::stream_from (transaction_base &tx, std::string_view table)
│ │ │ +- Use factories table or raw_table instead.
│ │ │ +- Member pqxx::stream_from::stream_from (transaction_base &tx, from_table_t, std::string_view table, Columns const &columns)
│ │ │ +- Use factory function query instead.
│ │ │ - Member pqxx::stream_from::stream_from (transaction_base &, from_table_t, std::string_view table, Iter columns_begin, Iter columns_end)
│ │ │ -- Use factories table or raw_table instead.
│ │ │ +- Use factories table or raw_table instead.
│ │ │ - Member pqxx::stream_from::stream_from (transaction_base &, from_table_t, std::string_view table)
│ │ │ -- Use factories table or raw_table instead.
│ │ │ +- Use factories table or raw_table instead.
│ │ │ - Member pqxx::stream_from::stream_from (transaction_base &, from_query_t, std::string_view query)
│ │ │ -- Use factory function query instead.
│ │ │ +- Use factory function query instead.
│ │ │ - Member pqxx::stream_to::stream_to (transaction_base &tx, std::string_view table_name)
│ │ │ -- Use table or raw_table as a factory.
│ │ │ +- Use table or raw_table as a factory.
│ │ │ - Member pqxx::stream_to::stream_to (transaction_base &, std::string_view table_name, Columns const &columns)
│ │ │ -- Use table or raw_table as a factory.
│ │ │ +- Use table or raw_table as a factory.
│ │ │ - Member pqxx::strip_t
│ │ │ -- In C++20 we'll replace this with std::remove_cvref.
│ │ │ +- In C++20 we'll replace this with std::remove_cvref.
│ │ │ - Member pqxx::transaction_base::set_variable (std::string_view var, std::string_view value)
│ │ │ - To set a transaction-local variable, execute an SQL
SET
command. To set a session variable, use the connection's set_session_var function.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ├── html2text {}
│ │ │ │ @@ -67,26 +67,26 @@
│ │ │ │ Member _p_q_x_x_:_:_r_o_w_:_:_s_l_i_c_e (size_type sbegin, size_type send) const
│ │ │ │ I haven't heard of anyone caring about row slicing at all in at least the
│ │ │ │ last 15 years. Yet it adds complexity, so unless anyone files a bug
│ │ │ │ explaining why they really need this feature, I'm going to remove it.
│ │ │ │ Even if they do, the feature may need an update.
│ │ │ │ Class _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m
│ │ │ │ Use _t_r_a_n_s_a_c_t_i_o_n___b_a_s_e_:_:_s_t_r_e_a_m.
│ │ │ │ - Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &tx, _f_r_o_m___t_a_b_l_e___t,
│ │ │ │ - std::string_view table, Columns const &columns)
│ │ │ │ - Use factory function _q_u_e_r_y instead.
│ │ │ │ - Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &tx, std::string_view
│ │ │ │ - table)
│ │ │ │ - Use factories _t_a_b_l_e or _r_a_w___t_a_b_l_e instead.
│ │ │ │ Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &tx, std::string_view
│ │ │ │ table, Columns const &columns)
│ │ │ │ Use factories _t_a_b_l_e or _r_a_w___t_a_b_l_e instead.
│ │ │ │ Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &, std::string_view
│ │ │ │ table, Iter columns_begin, Iter columns_end)
│ │ │ │ Use factories _t_a_b_l_e or _r_a_w___t_a_b_l_e instead.
│ │ │ │ + Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &tx, std::string_view
│ │ │ │ + table)
│ │ │ │ + Use factories _t_a_b_l_e or _r_a_w___t_a_b_l_e instead.
│ │ │ │ + Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &tx, _f_r_o_m___t_a_b_l_e___t,
│ │ │ │ + std::string_view table, Columns const &columns)
│ │ │ │ + Use factory function _q_u_e_r_y instead.
│ │ │ │ Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &, _f_r_o_m___t_a_b_l_e___t,
│ │ │ │ std::string_view table, Iter columns_begin, Iter columns_end)
│ │ │ │ Use factories _t_a_b_l_e or _r_a_w___t_a_b_l_e instead.
│ │ │ │ Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &, _f_r_o_m___t_a_b_l_e___t,
│ │ │ │ std::string_view table)
│ │ │ │ Use factories _t_a_b_l_e or _r_a_w___t_a_b_l_e instead.
│ │ │ │ Member _p_q_x_x_:_:_s_t_r_e_a_m___f_r_o_m_:_:_s_t_r_e_a_m___f_r_o_m (_t_r_a_n_s_a_c_t_i_o_n___b_a_s_e &, _f_r_o_m___q_u_e_r_y___t,
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/namespacepqxx.html
│ │ │ @@ -920,15 +920,15 @@
│ │ │
│ │ │
│ │ │ struct pqxx::from_query_t |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ pqxx::from_table_t
│ │ │
│ │ │
│ │ │ @@ -936,15 +936,15 @@
│ │ │
│ │ │
│ │ │ struct pqxx::from_table_t |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ pqxx::notification
│ │ │
│ │ │
│ │ │ @@ -1073,15 +1073,15 @@
│ │ │
│ │ │ -
- Deprecated:
- Old base class for connection. They are now the same class.
│ │ │ +
- Deprecated:
- Old base class for connection. They are now the same class.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ fieldstream
│ │ │
│ │ │
│ │ │ @@ -1107,15 +1107,15 @@
│ │ │
│ │ │ using pqxx::strip_t = typedef std::remove_cv_t<std::remove_reference_t<TYPE> > |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
Remove any constness, volatile, and reference-ness from a type.
│ │ │ -
- Deprecated:
- In C++20 we'll replace this with std::remove_cvref.
│ │ │ +
- Deprecated:
- In C++20 we'll replace this with std::remove_cvref.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ table_path
│ │ │
│ │ │
│ │ │ @@ -1486,15 +1486,15 @@
│ │ │
) |
│ │ │ | |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ encrypt_password() [2/2]
│ │ │
│ │ │
│ │ │ @@ -1525,15 +1525,15 @@
│ │ │
│ │ │ inline |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ from_string()
│ │ │
│ │ │
│ │ │ @@ -1985,15 +1985,15 @@
│ │ │
│ │ │ constexpr |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ from_table
│ │ │
│ │ │
│ │ │ @@ -2010,15 +2010,15 @@
│ │ │
│ │ │ constexpr |
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ ◆ has_generic_bytes_char_traits
│ │ │
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/namespacepqxx_1_1prepare.html
│ │ │ @@ -90,15 +90,15 @@
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ -
- Deprecated:
- The new params class replaces all of this.
│ │ │ +
- Deprecated:
- The new params class replaces all of this.
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │
│ │ │ - pqxx
- prepare
│ │ │
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreedata.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -22,19 +22,19 @@
│ │ │ │
│ │ │ │ @licend The above is the entire license notice for the JavaScript code in this file
│ │ │ │ */
│ │ │ │ var NAVTREE = [
│ │ │ │ ["libpqxx", "index.html", [
│ │ │ │ ["Accessing results and result rows", "accessing-results.html", [
│ │ │ │ ["Querying rows of data", "accessing-results.html#autotoc_md0", null],
│ │ │ │ - ["Streaming rows", "accessing-results.html#autotoc_md2", null],
│ │ │ │ - ["Results with metadata", "accessing-results.html#autotoc_md3", null]
│ │ │ │ + ["Streaming rows", "accessing-results.html#autotoc_md1", null],
│ │ │ │ + ["Results with metadata", "accessing-results.html#autotoc_md2", null]
│ │ │ │ ]],
│ │ │ │ ["Binary data", "binary.html", [
│ │ │ │ - ["Caveats", "binary.html#autotoc_md1", null]
│ │ │ │ + ["Caveats", "binary.html#autotoc_md3", null]
│ │ │ │ ]],
│ │ │ │ ["Supporting additional data types", "datatypes.html", [
│ │ │ │ ["Converting types", "datatypes.html#autotoc_md6", null],
│ │ │ │ ["Supporting a new type", "datatypes.html#autotoc_md7", null],
│ │ │ │ ["Your type", "datatypes.html#autotoc_md8", null],
│ │ │ │ ["Specialise type_name", "datatypes.html#autotoc_md9", null],
│ │ │ │ ["Specialise nullness", "datatypes.html#autotoc_md10", null],
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreeindex0.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -1,252 +1,252 @@
│ │ │ │ var NAVTREEINDEX0 = {
│ │ │ │ "accessing-results.html": [0],
│ │ │ │ "accessing-results.html#autotoc_md0": [0, 0],
│ │ │ │ - "accessing-results.html#autotoc_md2": [0, 1],
│ │ │ │ - "accessing-results.html#autotoc_md3": [0, 2],
│ │ │ │ + "accessing-results.html#autotoc_md1": [0, 1],
│ │ │ │ + "accessing-results.html#autotoc_md2": [0, 2],
│ │ │ │ "annotated.html": [13, 0],
│ │ │ │ "array-composite_8hxx_source.html": [14, 0, 0, 0, 0, 1],
│ │ │ │ "array_8hxx_source.html": [14, 0, 0, 0, 1],
│ │ │ │ "binary.html": [1],
│ │ │ │ - "binary.html#autotoc_md1": [1, 0],
│ │ │ │ + "binary.html#autotoc_md3": [1, 0],
│ │ │ │ "binarystring_8hxx_source.html": [14, 0, 0, 0, 2],
│ │ │ │ "blob_8hxx_source.html": [14, 0, 0, 0, 3],
│ │ │ │ "callgate_8hxx_source.html": [14, 0, 0, 0, 0, 2],
│ │ │ │ "classes.html": [13, 1],
│ │ │ │ - "classpqxx_1_1array.html": [13, 0, 0, 2],
│ │ │ │ "classpqxx_1_1array.html": [12, 0, 0, 3],
│ │ │ │ - "classpqxx_1_1array.html#a0e2b93e6f98dbc5eb22de85559f2669f": [12, 0, 0, 3, 1],
│ │ │ │ + "classpqxx_1_1array.html": [13, 0, 0, 2],
│ │ │ │ "classpqxx_1_1array.html#a0e2b93e6f98dbc5eb22de85559f2669f": [13, 0, 0, 2, 1],
│ │ │ │ + "classpqxx_1_1array.html#a0e2b93e6f98dbc5eb22de85559f2669f": [12, 0, 0, 3, 1],
│ │ │ │ "classpqxx_1_1array.html#a14d57111c8af2324a8e9e8e3df162d9d": [13, 0, 0, 2, 3],
│ │ │ │ "classpqxx_1_1array.html#a14d57111c8af2324a8e9e8e3df162d9d": [12, 0, 0, 3, 3],
│ │ │ │ - "classpqxx_1_1array.html#a2499a20fcc7d9da7e7f303b6e16fb254": [13, 0, 0, 2, 4],
│ │ │ │ "classpqxx_1_1array.html#a2499a20fcc7d9da7e7f303b6e16fb254": [12, 0, 0, 3, 4],
│ │ │ │ - "classpqxx_1_1array.html#a36d27b1f7e366a07944115a382aa4087": [13, 0, 0, 2, 8],
│ │ │ │ + "classpqxx_1_1array.html#a2499a20fcc7d9da7e7f303b6e16fb254": [13, 0, 0, 2, 4],
│ │ │ │ "classpqxx_1_1array.html#a36d27b1f7e366a07944115a382aa4087": [12, 0, 0, 3, 8],
│ │ │ │ - "classpqxx_1_1array.html#a592afe2ec16fbb793501e84d805c87eb": [13, 0, 0, 2, 9],
│ │ │ │ + "classpqxx_1_1array.html#a36d27b1f7e366a07944115a382aa4087": [13, 0, 0, 2, 8],
│ │ │ │ "classpqxx_1_1array.html#a592afe2ec16fbb793501e84d805c87eb": [12, 0, 0, 3, 9],
│ │ │ │ - "classpqxx_1_1array.html#a707b514df7835fa198a29ae68897efd8": [12, 0, 0, 3, 11],
│ │ │ │ + "classpqxx_1_1array.html#a592afe2ec16fbb793501e84d805c87eb": [13, 0, 0, 2, 9],
│ │ │ │ "classpqxx_1_1array.html#a707b514df7835fa198a29ae68897efd8": [13, 0, 0, 2, 11],
│ │ │ │ + "classpqxx_1_1array.html#a707b514df7835fa198a29ae68897efd8": [12, 0, 0, 3, 11],
│ │ │ │ "classpqxx_1_1array.html#a76252c66ef91327bc8c5ae296cb9aacb": [12, 0, 0, 3, 6],
│ │ │ │ "classpqxx_1_1array.html#a76252c66ef91327bc8c5ae296cb9aacb": [13, 0, 0, 2, 6],
│ │ │ │ - "classpqxx_1_1array.html#aa091e8641639a3802f44b565194d1119": [13, 0, 0, 2, 2],
│ │ │ │ "classpqxx_1_1array.html#aa091e8641639a3802f44b565194d1119": [12, 0, 0, 3, 2],
│ │ │ │ - "classpqxx_1_1array.html#ac2f300e0917b8e0afbc9d77bbc26534a": [13, 0, 0, 2, 5],
│ │ │ │ + "classpqxx_1_1array.html#aa091e8641639a3802f44b565194d1119": [13, 0, 0, 2, 2],
│ │ │ │ "classpqxx_1_1array.html#ac2f300e0917b8e0afbc9d77bbc26534a": [12, 0, 0, 3, 5],
│ │ │ │ + "classpqxx_1_1array.html#ac2f300e0917b8e0afbc9d77bbc26534a": [13, 0, 0, 2, 5],
│ │ │ │ "classpqxx_1_1array.html#ad0bf0e010691f056bebaa506f9e034dc": [13, 0, 0, 2, 10],
│ │ │ │ "classpqxx_1_1array.html#ad0bf0e010691f056bebaa506f9e034dc": [12, 0, 0, 3, 10],
│ │ │ │ "classpqxx_1_1array.html#adc708c5c347c90b17a33e28d5fac08c0": [12, 0, 0, 3, 0],
│ │ │ │ "classpqxx_1_1array.html#adc708c5c347c90b17a33e28d5fac08c0": [13, 0, 0, 2, 0],
│ │ │ │ "classpqxx_1_1array.html#af0f6cbf8e3621dc46e59b9563ed436b1": [12, 0, 0, 3, 7],
│ │ │ │ "classpqxx_1_1array.html#af0f6cbf8e3621dc46e59b9563ed436b1": [13, 0, 0, 2, 7],
│ │ │ │ - "classpqxx_1_1array__parser.html": [13, 0, 0, 3],
│ │ │ │ "classpqxx_1_1array__parser.html": [12, 0, 0, 4],
│ │ │ │ + "classpqxx_1_1array__parser.html": [13, 0, 0, 3],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189e": [12, 0, 0, 4, 0],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189e": [13, 0, 0, 3, 0],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea6b2ded51d81a4403d8a4bd25fa1e57ee": [12, 0, 0, 4, 0, 4],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea6b2ded51d81a4403d8a4bd25fa1e57ee": [13, 0, 0, 3, 0, 4],
│ │ │ │ - "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea776234b9f0a5c0e802f2790824042092": [13, 0, 0, 3, 0, 0],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea776234b9f0a5c0e802f2790824042092": [12, 0, 0, 4, 0, 0],
│ │ │ │ - "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea863a85b49df560a48bb166fcbf59f8b4": [12, 0, 0, 4, 0, 3],
│ │ │ │ + "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea776234b9f0a5c0e802f2790824042092": [13, 0, 0, 3, 0, 0],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea863a85b49df560a48bb166fcbf59f8b4": [13, 0, 0, 3, 0, 3],
│ │ │ │ - "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea9e374dadbd88854fd5b2631a6b83a295": [13, 0, 0, 3, 0, 2],
│ │ │ │ + "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea863a85b49df560a48bb166fcbf59f8b4": [12, 0, 0, 4, 0, 3],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea9e374dadbd88854fd5b2631a6b83a295": [12, 0, 0, 4, 0, 2],
│ │ │ │ + "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea9e374dadbd88854fd5b2631a6b83a295": [13, 0, 0, 3, 0, 2],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189eab11c3eff6dd36f1f7136020d32b38051": [12, 0, 0, 4, 0, 1],
│ │ │ │ "classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189eab11c3eff6dd36f1f7136020d32b38051": [13, 0, 0, 3, 0, 1],
│ │ │ │ "classpqxx_1_1array__parser.html#a4d31bd279a4e2314030b8f86b2dd3c2e": [13, 0, 0, 3, 2],
│ │ │ │ "classpqxx_1_1array__parser.html#a4d31bd279a4e2314030b8f86b2dd3c2e": [12, 0, 0, 4, 2],
│ │ │ │ - "classpqxx_1_1array__parser.html#accdb2ebade9563ca1c396925d65ce6ff": [12, 0, 0, 4, 1],
│ │ │ │ "classpqxx_1_1array__parser.html#accdb2ebade9563ca1c396925d65ce6ff": [13, 0, 0, 3, 1],
│ │ │ │ + "classpqxx_1_1array__parser.html#accdb2ebade9563ca1c396925d65ce6ff": [12, 0, 0, 4, 1],
│ │ │ │ "classpqxx_1_1basic__fieldstream.html": [12, 0, 0, 5],
│ │ │ │ "classpqxx_1_1basic__fieldstream.html": [13, 0, 0, 4],
│ │ │ │ - "classpqxx_1_1basic__ilostream.html": [13, 0, 0, 5],
│ │ │ │ "classpqxx_1_1basic__ilostream.html": [12, 0, 0, 6],
│ │ │ │ - "classpqxx_1_1basic__ilostream.html#a1ad04f291d7854a4dd66a3ea72035534": [12, 0, 0, 6, 1],
│ │ │ │ + "classpqxx_1_1basic__ilostream.html": [13, 0, 0, 5],
│ │ │ │ "classpqxx_1_1basic__ilostream.html#a1ad04f291d7854a4dd66a3ea72035534": [13, 0, 0, 5, 1],
│ │ │ │ + "classpqxx_1_1basic__ilostream.html#a1ad04f291d7854a4dd66a3ea72035534": [12, 0, 0, 6, 1],
│ │ │ │ "classpqxx_1_1basic__ilostream.html#a67f1cdf6e05f02e4ac2bbcde5ce117b8": [12, 0, 0, 6, 0],
│ │ │ │ "classpqxx_1_1basic__ilostream.html#a67f1cdf6e05f02e4ac2bbcde5ce117b8": [13, 0, 0, 5, 0],
│ │ │ │ - "classpqxx_1_1basic__lostream.html": [12, 0, 0, 7],
│ │ │ │ "classpqxx_1_1basic__lostream.html": [13, 0, 0, 6],
│ │ │ │ - "classpqxx_1_1basic__lostream.html#a8aaf8ee6fd445f410ce1153212315baa": [13, 0, 0, 6, 0],
│ │ │ │ + "classpqxx_1_1basic__lostream.html": [12, 0, 0, 7],
│ │ │ │ "classpqxx_1_1basic__lostream.html#a8aaf8ee6fd445f410ce1153212315baa": [12, 0, 0, 7, 0],
│ │ │ │ - "classpqxx_1_1basic__lostream.html#ac8a118d4e4b7eb0acff3df853d698b66": [13, 0, 0, 6, 1],
│ │ │ │ + "classpqxx_1_1basic__lostream.html#a8aaf8ee6fd445f410ce1153212315baa": [13, 0, 0, 6, 0],
│ │ │ │ "classpqxx_1_1basic__lostream.html#ac8a118d4e4b7eb0acff3df853d698b66": [12, 0, 0, 7, 1],
│ │ │ │ - "classpqxx_1_1basic__olostream.html": [12, 0, 0, 8],
│ │ │ │ + "classpqxx_1_1basic__lostream.html#ac8a118d4e4b7eb0acff3df853d698b66": [13, 0, 0, 6, 1],
│ │ │ │ "classpqxx_1_1basic__olostream.html": [13, 0, 0, 7],
│ │ │ │ + "classpqxx_1_1basic__olostream.html": [12, 0, 0, 8],
│ │ │ │ "classpqxx_1_1basic__olostream.html#a48a66d3ebac27506cfcccd2d30e27e9e": [13, 0, 0, 7, 0],
│ │ │ │ "classpqxx_1_1basic__olostream.html#a48a66d3ebac27506cfcccd2d30e27e9e": [12, 0, 0, 8, 0],
│ │ │ │ - "classpqxx_1_1basic__olostream.html#aa444228f010d79bbbc2b23a10cb20e5c": [13, 0, 0, 7, 1],
│ │ │ │ "classpqxx_1_1basic__olostream.html#aa444228f010d79bbbc2b23a10cb20e5c": [12, 0, 0, 8, 1],
│ │ │ │ - "classpqxx_1_1blob.html": [13, 0, 0, 9],
│ │ │ │ + "classpqxx_1_1basic__olostream.html#aa444228f010d79bbbc2b23a10cb20e5c": [13, 0, 0, 7, 1],
│ │ │ │ "classpqxx_1_1blob.html": [12, 0, 0, 10],
│ │ │ │ + "classpqxx_1_1blob.html": [13, 0, 0, 9],
│ │ │ │ "classpqxx_1_1blob.html#a2066f1b112029d66c2a7880592a199e2": [12, 0, 0, 10, 6],
│ │ │ │ "classpqxx_1_1blob.html#a2066f1b112029d66c2a7880592a199e2": [13, 0, 0, 9, 6],
│ │ │ │ "classpqxx_1_1blob.html#a21ffe5a83b60ffa464bd1784e3831a11": [12, 0, 0, 10, 4],
│ │ │ │ "classpqxx_1_1blob.html#a21ffe5a83b60ffa464bd1784e3831a11": [13, 0, 0, 9, 4],
│ │ │ │ - "classpqxx_1_1blob.html#a28ff055c22102e0d1bda250d20d265e8": [13, 0, 0, 9, 11],
│ │ │ │ "classpqxx_1_1blob.html#a28ff055c22102e0d1bda250d20d265e8": [12, 0, 0, 10, 11],
│ │ │ │ + "classpqxx_1_1blob.html#a28ff055c22102e0d1bda250d20d265e8": [13, 0, 0, 9, 11],
│ │ │ │ "classpqxx_1_1blob.html#a3c1c5fcc157476dfe938c6901059502f": [13, 0, 0, 9, 0],
│ │ │ │ "classpqxx_1_1blob.html#a3c1c5fcc157476dfe938c6901059502f": [12, 0, 0, 10, 0],
│ │ │ │ "classpqxx_1_1blob.html#a787f0a89cbff1031e363301f4348c8ec": [12, 0, 0, 10, 2],
│ │ │ │ "classpqxx_1_1blob.html#a787f0a89cbff1031e363301f4348c8ec": [13, 0, 0, 9, 2],
│ │ │ │ "classpqxx_1_1blob.html#a88f116eb30c662386e02a1a47fd859b8": [13, 0, 0, 9, 10],
│ │ │ │ "classpqxx_1_1blob.html#a88f116eb30c662386e02a1a47fd859b8": [12, 0, 0, 10, 10],
│ │ │ │ "classpqxx_1_1blob.html#a95c07a00765b77f9835ca869fe43287a": [13, 0, 0, 9, 3],
│ │ │ │ "classpqxx_1_1blob.html#a95c07a00765b77f9835ca869fe43287a": [12, 0, 0, 10, 3],
│ │ │ │ "classpqxx_1_1blob.html#aafa3ce93f6401c592f8985217be1d416": [12, 0, 0, 10, 1],
│ │ │ │ "classpqxx_1_1blob.html#aafa3ce93f6401c592f8985217be1d416": [13, 0, 0, 9, 1],
│ │ │ │ - "classpqxx_1_1blob.html#ac95d070901a97d46659806edd6687f53": [12, 0, 0, 10, 9],
│ │ │ │ "classpqxx_1_1blob.html#ac95d070901a97d46659806edd6687f53": [13, 0, 0, 9, 9],
│ │ │ │ + "classpqxx_1_1blob.html#ac95d070901a97d46659806edd6687f53": [12, 0, 0, 10, 9],
│ │ │ │ "classpqxx_1_1blob.html#aca130d3433032b610ea94136968d16e5": [12, 0, 0, 10, 7],
│ │ │ │ "classpqxx_1_1blob.html#aca130d3433032b610ea94136968d16e5": [13, 0, 0, 9, 7],
│ │ │ │ - "classpqxx_1_1blob.html#af687083e0ce3884d27e8fcf3f6254a23": [12, 0, 0, 10, 5],
│ │ │ │ "classpqxx_1_1blob.html#af687083e0ce3884d27e8fcf3f6254a23": [13, 0, 0, 9, 5],
│ │ │ │ + "classpqxx_1_1blob.html#af687083e0ce3884d27e8fcf3f6254a23": [12, 0, 0, 10, 5],
│ │ │ │ "classpqxx_1_1blob.html#aff777e2a1736d1a24b07e410e846181e": [13, 0, 0, 9, 8],
│ │ │ │ "classpqxx_1_1blob.html#aff777e2a1736d1a24b07e410e846181e": [12, 0, 0, 10, 8],
│ │ │ │ "classpqxx_1_1connecting.html": [12, 0, 0, 14],
│ │ │ │ "classpqxx_1_1connecting.html": [13, 0, 0, 13],
│ │ │ │ - "classpqxx_1_1connecting.html#a26fe754177b77ce5d62a7de871d79b7b": [12, 0, 0, 14, 4],
│ │ │ │ "classpqxx_1_1connecting.html#a26fe754177b77ce5d62a7de871d79b7b": [13, 0, 0, 13, 4],
│ │ │ │ - "classpqxx_1_1connecting.html#a2859ca4422246743c85e4baf2ea00a1e": [13, 0, 0, 13, 1],
│ │ │ │ + "classpqxx_1_1connecting.html#a26fe754177b77ce5d62a7de871d79b7b": [12, 0, 0, 14, 4],
│ │ │ │ "classpqxx_1_1connecting.html#a2859ca4422246743c85e4baf2ea00a1e": [12, 0, 0, 14, 1],
│ │ │ │ - "classpqxx_1_1connecting.html#a4b39dd46b61ea3e39242213bd4245eb0": [13, 0, 0, 13, 6],
│ │ │ │ + "classpqxx_1_1connecting.html#a2859ca4422246743c85e4baf2ea00a1e": [13, 0, 0, 13, 1],
│ │ │ │ "classpqxx_1_1connecting.html#a4b39dd46b61ea3e39242213bd4245eb0": [12, 0, 0, 14, 6],
│ │ │ │ - "classpqxx_1_1connecting.html#a58084f41892e19eb2a603a95de4f7dd9": [12, 0, 0, 14, 2],
│ │ │ │ + "classpqxx_1_1connecting.html#a4b39dd46b61ea3e39242213bd4245eb0": [13, 0, 0, 13, 6],
│ │ │ │ "classpqxx_1_1connecting.html#a58084f41892e19eb2a603a95de4f7dd9": [13, 0, 0, 13, 2],
│ │ │ │ + "classpqxx_1_1connecting.html#a58084f41892e19eb2a603a95de4f7dd9": [12, 0, 0, 14, 2],
│ │ │ │ "classpqxx_1_1connecting.html#aa60ab98dc5a2702929765f05229bf160": [12, 0, 0, 14, 5],
│ │ │ │ "classpqxx_1_1connecting.html#aa60ab98dc5a2702929765f05229bf160": [13, 0, 0, 13, 5],
│ │ │ │ - "classpqxx_1_1connecting.html#acf5c44883289c96122a64aeaa5371aa5": [13, 0, 0, 13, 0],
│ │ │ │ "classpqxx_1_1connecting.html#acf5c44883289c96122a64aeaa5371aa5": [12, 0, 0, 14, 0],
│ │ │ │ + "classpqxx_1_1connecting.html#acf5c44883289c96122a64aeaa5371aa5": [13, 0, 0, 13, 0],
│ │ │ │ "classpqxx_1_1connecting.html#af0022f168b3c81c4f1a156a11a2b28ea": [12, 0, 0, 14, 3],
│ │ │ │ "classpqxx_1_1connecting.html#af0022f168b3c81c4f1a156a11a2b28ea": [13, 0, 0, 13, 3],
│ │ │ │ - "classpqxx_1_1connection.html": [13, 0, 0, 14],
│ │ │ │ "classpqxx_1_1connection.html": [12, 0, 0, 15],
│ │ │ │ - "classpqxx_1_1connection.html#a024851ed6f2ee32fa00e0fcf53cf37ac": [13, 0, 0, 14, 53],
│ │ │ │ + "classpqxx_1_1connection.html": [13, 0, 0, 14],
│ │ │ │ "classpqxx_1_1connection.html#a024851ed6f2ee32fa00e0fcf53cf37ac": [12, 0, 0, 15, 53],
│ │ │ │ + "classpqxx_1_1connection.html#a024851ed6f2ee32fa00e0fcf53cf37ac": [13, 0, 0, 14, 53],
│ │ │ │ "classpqxx_1_1connection.html#a0724de6ed0e9b65267967adaa34c4f78": [13, 0, 0, 14, 14],
│ │ │ │ "classpqxx_1_1connection.html#a0724de6ed0e9b65267967adaa34c4f78": [12, 0, 0, 15, 14],
│ │ │ │ - "classpqxx_1_1connection.html#a1130bc7963d62dd018b80415cd3f4b75": [12, 0, 0, 15, 7],
│ │ │ │ "classpqxx_1_1connection.html#a1130bc7963d62dd018b80415cd3f4b75": [13, 0, 0, 14, 7],
│ │ │ │ - "classpqxx_1_1connection.html#a133c4376f8d97680c64d665770f37171": [12, 0, 0, 15, 24],
│ │ │ │ + "classpqxx_1_1connection.html#a1130bc7963d62dd018b80415cd3f4b75": [12, 0, 0, 15, 7],
│ │ │ │ "classpqxx_1_1connection.html#a133c4376f8d97680c64d665770f37171": [13, 0, 0, 14, 24],
│ │ │ │ + "classpqxx_1_1connection.html#a133c4376f8d97680c64d665770f37171": [12, 0, 0, 15, 24],
│ │ │ │ "classpqxx_1_1connection.html#a140337eada7fe60e15d8b113b8599f0d": [13, 0, 0, 14, 32],
│ │ │ │ "classpqxx_1_1connection.html#a140337eada7fe60e15d8b113b8599f0d": [12, 0, 0, 15, 32],
│ │ │ │ "classpqxx_1_1connection.html#a1e401dd0dbd1be80176a691a864f652b": [12, 0, 0, 15, 28],
│ │ │ │ "classpqxx_1_1connection.html#a1e401dd0dbd1be80176a691a864f652b": [13, 0, 0, 14, 28],
│ │ │ │ "classpqxx_1_1connection.html#a21cfae9a17fcca3a4f93f21883822fb3": [12, 0, 0, 15, 43],
│ │ │ │ "classpqxx_1_1connection.html#a21cfae9a17fcca3a4f93f21883822fb3": [13, 0, 0, 14, 43],
│ │ │ │ "classpqxx_1_1connection.html#a22d2c852a4e1c159c021b04efc04f8e1": [12, 0, 0, 15, 20],
│ │ │ │ "classpqxx_1_1connection.html#a22d2c852a4e1c159c021b04efc04f8e1": [13, 0, 0, 14, 20],
│ │ │ │ - "classpqxx_1_1connection.html#a24e6d240181c50ca81a7bfe816185a60": [12, 0, 0, 15, 1],
│ │ │ │ "classpqxx_1_1connection.html#a24e6d240181c50ca81a7bfe816185a60": [13, 0, 0, 14, 1],
│ │ │ │ - "classpqxx_1_1connection.html#a276b3fe0ae9d3cc8e5a04f5e9b2bf1cf": [12, 0, 0, 15, 42],
│ │ │ │ + "classpqxx_1_1connection.html#a24e6d240181c50ca81a7bfe816185a60": [12, 0, 0, 15, 1],
│ │ │ │ "classpqxx_1_1connection.html#a276b3fe0ae9d3cc8e5a04f5e9b2bf1cf": [13, 0, 0, 14, 42],
│ │ │ │ + "classpqxx_1_1connection.html#a276b3fe0ae9d3cc8e5a04f5e9b2bf1cf": [12, 0, 0, 15, 42],
│ │ │ │ "classpqxx_1_1connection.html#a279d1096372ef68e4c45ff51a8fe4f8a": [13, 0, 0, 14, 35],
│ │ │ │ "classpqxx_1_1connection.html#a279d1096372ef68e4c45ff51a8fe4f8a": [12, 0, 0, 15, 35],
│ │ │ │ "classpqxx_1_1connection.html#a286e275a7701a8ac96f839cbf8205258": [12, 0, 0, 15, 11],
│ │ │ │ "classpqxx_1_1connection.html#a286e275a7701a8ac96f839cbf8205258": [13, 0, 0, 14, 11],
│ │ │ │ - "classpqxx_1_1connection.html#a2da006fb42b49b72f1261b774aaf6e10": [12, 0, 0, 15, 48],
│ │ │ │ "classpqxx_1_1connection.html#a2da006fb42b49b72f1261b774aaf6e10": [13, 0, 0, 14, 48],
│ │ │ │ + "classpqxx_1_1connection.html#a2da006fb42b49b72f1261b774aaf6e10": [12, 0, 0, 15, 48],
│ │ │ │ "classpqxx_1_1connection.html#a33b387a15586501afd6d78ea9eabc9f9": [13, 0, 0, 14, 25],
│ │ │ │ "classpqxx_1_1connection.html#a33b387a15586501afd6d78ea9eabc9f9": [12, 0, 0, 15, 25],
│ │ │ │ "classpqxx_1_1connection.html#a3b8266efbb47eb4be0acae9ba198459d": [12, 0, 0, 15, 49],
│ │ │ │ "classpqxx_1_1connection.html#a3b8266efbb47eb4be0acae9ba198459d": [13, 0, 0, 14, 49],
│ │ │ │ - "classpqxx_1_1connection.html#a3eb2374848e1ddf85fe8dfa5f58826f3": [12, 0, 0, 15, 50],
│ │ │ │ "classpqxx_1_1connection.html#a3eb2374848e1ddf85fe8dfa5f58826f3": [13, 0, 0, 14, 50],
│ │ │ │ + "classpqxx_1_1connection.html#a3eb2374848e1ddf85fe8dfa5f58826f3": [12, 0, 0, 15, 50],
│ │ │ │ "classpqxx_1_1connection.html#a47a75fc88fccf6e3c4f7042443cac8b9": [12, 0, 0, 15, 26],
│ │ │ │ "classpqxx_1_1connection.html#a47a75fc88fccf6e3c4f7042443cac8b9": [13, 0, 0, 14, 26],
│ │ │ │ "classpqxx_1_1connection.html#a4a24a7f9cf8d23f6c660ea1a0fbc3bf2": [12, 0, 0, 15, 36],
│ │ │ │ "classpqxx_1_1connection.html#a4a24a7f9cf8d23f6c660ea1a0fbc3bf2": [13, 0, 0, 14, 36],
│ │ │ │ - "classpqxx_1_1connection.html#a59295a47049b03ab949b3781dd60ed42": [12, 0, 0, 15, 52],
│ │ │ │ "classpqxx_1_1connection.html#a59295a47049b03ab949b3781dd60ed42": [13, 0, 0, 14, 52],
│ │ │ │ - "classpqxx_1_1connection.html#a593be839225aadd0b16804647e11c285": [12, 0, 0, 15, 56],
│ │ │ │ + "classpqxx_1_1connection.html#a59295a47049b03ab949b3781dd60ed42": [12, 0, 0, 15, 52],
│ │ │ │ "classpqxx_1_1connection.html#a593be839225aadd0b16804647e11c285": [13, 0, 0, 14, 56],
│ │ │ │ + "classpqxx_1_1connection.html#a593be839225aadd0b16804647e11c285": [12, 0, 0, 15, 56],
│ │ │ │ "classpqxx_1_1connection.html#a5c68dd44c2a9e64eb2022623659ebc09": [12, 0, 0, 15, 0],
│ │ │ │ "classpqxx_1_1connection.html#a5c68dd44c2a9e64eb2022623659ebc09": [13, 0, 0, 14, 0],
│ │ │ │ - "classpqxx_1_1connection.html#a5cbd8240e3c74b595ccb535c941433ae": [13, 0, 0, 14, 59],
│ │ │ │ "classpqxx_1_1connection.html#a5cbd8240e3c74b595ccb535c941433ae": [12, 0, 0, 15, 59],
│ │ │ │ - "classpqxx_1_1connection.html#a606c6c84a1ff57ae7bfc9e2001847270": [13, 0, 0, 14, 44],
│ │ │ │ + "classpqxx_1_1connection.html#a5cbd8240e3c74b595ccb535c941433ae": [13, 0, 0, 14, 59],
│ │ │ │ "classpqxx_1_1connection.html#a606c6c84a1ff57ae7bfc9e2001847270": [12, 0, 0, 15, 44],
│ │ │ │ + "classpqxx_1_1connection.html#a606c6c84a1ff57ae7bfc9e2001847270": [13, 0, 0, 14, 44],
│ │ │ │ "classpqxx_1_1connection.html#a6e6bc476091af546f880c9c572f05375": [13, 0, 0, 14, 17],
│ │ │ │ "classpqxx_1_1connection.html#a6e6bc476091af546f880c9c572f05375": [12, 0, 0, 15, 17],
│ │ │ │ "classpqxx_1_1connection.html#a6f0d42562cf2e37c1673738bf330b2b7": [13, 0, 0, 14, 40],
│ │ │ │ "classpqxx_1_1connection.html#a6f0d42562cf2e37c1673738bf330b2b7": [12, 0, 0, 15, 40],
│ │ │ │ - "classpqxx_1_1connection.html#a6f21e952ab8d614eead0b1dfa87598b1": [12, 0, 0, 15, 57],
│ │ │ │ "classpqxx_1_1connection.html#a6f21e952ab8d614eead0b1dfa87598b1": [13, 0, 0, 14, 57],
│ │ │ │ + "classpqxx_1_1connection.html#a6f21e952ab8d614eead0b1dfa87598b1": [12, 0, 0, 15, 57],
│ │ │ │ "classpqxx_1_1connection.html#a71bc4478b6beac9f8e978a5750980fbb": [12, 0, 0, 15, 2],
│ │ │ │ "classpqxx_1_1connection.html#a71bc4478b6beac9f8e978a5750980fbb": [13, 0, 0, 14, 2],
│ │ │ │ "classpqxx_1_1connection.html#a72b6b843cbeb8555ade27ab831e6d6e9": [12, 0, 0, 15, 19],
│ │ │ │ "classpqxx_1_1connection.html#a72b6b843cbeb8555ade27ab831e6d6e9": [13, 0, 0, 14, 19],
│ │ │ │ - "classpqxx_1_1connection.html#a73e86c75f2d23788c83ce931b74ec108": [12, 0, 0, 15, 30],
│ │ │ │ "classpqxx_1_1connection.html#a73e86c75f2d23788c83ce931b74ec108": [13, 0, 0, 14, 30],
│ │ │ │ + "classpqxx_1_1connection.html#a73e86c75f2d23788c83ce931b74ec108": [12, 0, 0, 15, 30],
│ │ │ │ "classpqxx_1_1connection.html#a777daa7f80f3e55df9ee50e236f74653": [13, 0, 0, 14, 21],
│ │ │ │ "classpqxx_1_1connection.html#a777daa7f80f3e55df9ee50e236f74653": [12, 0, 0, 15, 21],
│ │ │ │ "classpqxx_1_1connection.html#a7e8f054f91d4e61879039bfdff9b2889": [12, 0, 0, 15, 18],
│ │ │ │ "classpqxx_1_1connection.html#a7e8f054f91d4e61879039bfdff9b2889": [13, 0, 0, 14, 18],
│ │ │ │ "classpqxx_1_1connection.html#a7fabf1d8ada47fd82d16a4a50ae7170b": [12, 0, 0, 15, 23],
│ │ │ │ "classpqxx_1_1connection.html#a7fabf1d8ada47fd82d16a4a50ae7170b": [13, 0, 0, 14, 23],
│ │ │ │ "classpqxx_1_1connection.html#a841e36a2408cf70fedb68a7f91c43a6e": [13, 0, 0, 14, 27],
│ │ │ │ "classpqxx_1_1connection.html#a841e36a2408cf70fedb68a7f91c43a6e": [12, 0, 0, 15, 27],
│ │ │ │ "classpqxx_1_1connection.html#a84ca9d29d5d2cb1d35fde324a7b3fc71": [13, 0, 0, 14, 46],
│ │ │ │ "classpqxx_1_1connection.html#a84ca9d29d5d2cb1d35fde324a7b3fc71": [12, 0, 0, 15, 46],
│ │ │ │ - "classpqxx_1_1connection.html#a8e6a7dbdf531482e63a3ae02db35c8aa": [12, 0, 0, 15, 10],
│ │ │ │ "classpqxx_1_1connection.html#a8e6a7dbdf531482e63a3ae02db35c8aa": [13, 0, 0, 14, 10],
│ │ │ │ + "classpqxx_1_1connection.html#a8e6a7dbdf531482e63a3ae02db35c8aa": [12, 0, 0, 15, 10],
│ │ │ │ "classpqxx_1_1connection.html#a975747afe8d451004680741492b76ae5": [12, 0, 0, 15, 12],
│ │ │ │ "classpqxx_1_1connection.html#a975747afe8d451004680741492b76ae5": [13, 0, 0, 14, 12],
│ │ │ │ - "classpqxx_1_1connection.html#a98dd8efd74b0a0456b177b8aa34ab7f2": [13, 0, 0, 14, 3],
│ │ │ │ "classpqxx_1_1connection.html#a98dd8efd74b0a0456b177b8aa34ab7f2": [12, 0, 0, 15, 3],
│ │ │ │ + "classpqxx_1_1connection.html#a98dd8efd74b0a0456b177b8aa34ab7f2": [13, 0, 0, 14, 3],
│ │ │ │ "classpqxx_1_1connection.html#a98f0397793e45b0ea2d9fa4e7a454167": [13, 0, 0, 14, 41],
│ │ │ │ "classpqxx_1_1connection.html#a98f0397793e45b0ea2d9fa4e7a454167": [12, 0, 0, 15, 41],
│ │ │ │ "classpqxx_1_1connection.html#a9d169190527e1b7da0b84d6405c895bb": [13, 0, 0, 14, 29],
│ │ │ │ "classpqxx_1_1connection.html#a9d169190527e1b7da0b84d6405c895bb": [12, 0, 0, 15, 29],
│ │ │ │ "classpqxx_1_1connection.html#a9d7c7ab0c54a258ac4fab0d562fdbacd": [13, 0, 0, 14, 60],
│ │ │ │ "classpqxx_1_1connection.html#a9d7c7ab0c54a258ac4fab0d562fdbacd": [12, 0, 0, 15, 60],
│ │ │ │ - "classpqxx_1_1connection.html#a9f544b1d75c80b9ce5f21a3d6838b176": [13, 0, 0, 14, 6],
│ │ │ │ "classpqxx_1_1connection.html#a9f544b1d75c80b9ce5f21a3d6838b176": [12, 0, 0, 15, 6],
│ │ │ │ + "classpqxx_1_1connection.html#a9f544b1d75c80b9ce5f21a3d6838b176": [13, 0, 0, 14, 6],
│ │ │ │ "classpqxx_1_1connection.html#aa07fee0ccbf246afdf2b9b873076c8fc": [12, 0, 0, 15, 22],
│ │ │ │ "classpqxx_1_1connection.html#aa07fee0ccbf246afdf2b9b873076c8fc": [13, 0, 0, 14, 22],
│ │ │ │ - "classpqxx_1_1connection.html#aa29f2e36001c4715e898f2c1a2ca9d5a": [13, 0, 0, 14, 15],
│ │ │ │ "classpqxx_1_1connection.html#aa29f2e36001c4715e898f2c1a2ca9d5a": [12, 0, 0, 15, 15],
│ │ │ │ + "classpqxx_1_1connection.html#aa29f2e36001c4715e898f2c1a2ca9d5a": [13, 0, 0, 14, 15],
│ │ │ │ "classpqxx_1_1connection.html#aa517b7352ea7d8aed937281c295d1f8d": [12, 0, 0, 15, 31],
│ │ │ │ "classpqxx_1_1connection.html#aa517b7352ea7d8aed937281c295d1f8d": [13, 0, 0, 14, 31],
│ │ │ │ "classpqxx_1_1connection.html#aa8dd0b5e748b96a2c82152b8001bdc69": [13, 0, 0, 14, 38],
│ │ │ │ "classpqxx_1_1connection.html#aa8dd0b5e748b96a2c82152b8001bdc69": [12, 0, 0, 15, 38],
│ │ │ │ "classpqxx_1_1connection.html#ab2a631d00b6cf93e6963a48b968cd4ae": [13, 0, 0, 14, 58],
│ │ │ │ "classpqxx_1_1connection.html#ab2a631d00b6cf93e6963a48b968cd4ae": [12, 0, 0, 15, 58],
│ │ │ │ "classpqxx_1_1connection.html#ab2fd28a1d384854642cc84dcd54cd450": [13, 0, 0, 14, 16],
│ │ │ │ "classpqxx_1_1connection.html#ab2fd28a1d384854642cc84dcd54cd450": [12, 0, 0, 15, 16],
│ │ │ │ "classpqxx_1_1connection.html#ab4cbd2e2d30694fcaf0969c33fbeaa8f": [12, 0, 0, 15, 4],
│ │ │ │ "classpqxx_1_1connection.html#ab4cbd2e2d30694fcaf0969c33fbeaa8f": [13, 0, 0, 14, 4],
│ │ │ │ - "classpqxx_1_1connection.html#abba2c839bfeba89008baa61abcd5ec30": [12, 0, 0, 15, 9],
│ │ │ │ "classpqxx_1_1connection.html#abba2c839bfeba89008baa61abcd5ec30": [13, 0, 0, 14, 9],
│ │ │ │ + "classpqxx_1_1connection.html#abba2c839bfeba89008baa61abcd5ec30": [12, 0, 0, 15, 9],
│ │ │ │ "classpqxx_1_1connection.html#abefc0dbe2fe33a338b01d863ba586da6": [13, 0, 0, 14, 45],
│ │ │ │ "classpqxx_1_1connection.html#abefc0dbe2fe33a338b01d863ba586da6": [12, 0, 0, 15, 45],
│ │ │ │ - "classpqxx_1_1connection.html#ac6888103e47fc344e18d17878cdc2bc7": [12, 0, 0, 15, 33],
│ │ │ │ "classpqxx_1_1connection.html#ac6888103e47fc344e18d17878cdc2bc7": [13, 0, 0, 14, 33],
│ │ │ │ + "classpqxx_1_1connection.html#ac6888103e47fc344e18d17878cdc2bc7": [12, 0, 0, 15, 33],
│ │ │ │ "classpqxx_1_1connection.html#ad1719d51a24c5aa6bd58f03a328a3833": [13, 0, 0, 14, 8],
│ │ │ │ "classpqxx_1_1connection.html#ad1719d51a24c5aa6bd58f03a328a3833": [12, 0, 0, 15, 8],
│ │ │ │ "classpqxx_1_1connection.html#ad685278470bb6569731fb84665d3af7f": [13, 0, 0, 14, 55],
│ │ │ │ "classpqxx_1_1connection.html#ad685278470bb6569731fb84665d3af7f": [12, 0, 0, 15, 55],
│ │ │ │ "classpqxx_1_1connection.html#add8ab06057cfd57e509c1e4e1f26e944": [13, 0, 0, 14, 34],
│ │ │ │ "classpqxx_1_1connection.html#add8ab06057cfd57e509c1e4e1f26e944": [12, 0, 0, 15, 34],
│ │ │ │ - "classpqxx_1_1connection.html#ae217a0eb7197724be22beeb01b841a5a": [12, 0, 0, 15, 47],
│ │ │ │ "classpqxx_1_1connection.html#ae217a0eb7197724be22beeb01b841a5a": [13, 0, 0, 14, 47],
│ │ │ │ - "classpqxx_1_1connection.html#ae23a5c19af62349c1924ec26d93c81d5": [12, 0, 0, 15, 51],
│ │ │ │ + "classpqxx_1_1connection.html#ae217a0eb7197724be22beeb01b841a5a": [12, 0, 0, 15, 47],
│ │ │ │ "classpqxx_1_1connection.html#ae23a5c19af62349c1924ec26d93c81d5": [13, 0, 0, 14, 51],
│ │ │ │ + "classpqxx_1_1connection.html#ae23a5c19af62349c1924ec26d93c81d5": [12, 0, 0, 15, 51],
│ │ │ │ "classpqxx_1_1connection.html#ae871e3c436af0ed50e1373d9157e7340": [12, 0, 0, 15, 39],
│ │ │ │ "classpqxx_1_1connection.html#ae871e3c436af0ed50e1373d9157e7340": [13, 0, 0, 14, 39],
│ │ │ │ - "classpqxx_1_1connection.html#aecfa98ec5ec1e783ed8e8737b587a9f0": [12, 0, 0, 15, 13],
│ │ │ │ "classpqxx_1_1connection.html#aecfa98ec5ec1e783ed8e8737b587a9f0": [13, 0, 0, 14, 13],
│ │ │ │ - "classpqxx_1_1connection.html#af0943810c21272c154befe173f2cd535": [13, 0, 0, 14, 37],
│ │ │ │ + "classpqxx_1_1connection.html#aecfa98ec5ec1e783ed8e8737b587a9f0": [12, 0, 0, 15, 13],
│ │ │ │ "classpqxx_1_1connection.html#af0943810c21272c154befe173f2cd535": [12, 0, 0, 15, 37],
│ │ │ │ - "classpqxx_1_1connection.html#af312d26f21b1cfd4d063e3b591fb7579": [13, 0, 0, 14, 54],
│ │ │ │ + "classpqxx_1_1connection.html#af0943810c21272c154befe173f2cd535": [13, 0, 0, 14, 37],
│ │ │ │ "classpqxx_1_1connection.html#af312d26f21b1cfd4d063e3b591fb7579": [12, 0, 0, 15, 54],
│ │ │ │ - "classpqxx_1_1connection.html#af40df333a37b9ba5f32d7ce399c397ca": [12, 0, 0, 15, 5],
│ │ │ │ + "classpqxx_1_1connection.html#af312d26f21b1cfd4d063e3b591fb7579": [13, 0, 0, 14, 54],
│ │ │ │ "classpqxx_1_1connection.html#af40df333a37b9ba5f32d7ce399c397ca": [13, 0, 0, 14, 5],
│ │ │ │ + "classpqxx_1_1connection.html#af40df333a37b9ba5f32d7ce399c397ca": [12, 0, 0, 15, 5],
│ │ │ │ "classpqxx_1_1const__result__iterator.html": [13, 0, 0, 15],
│ │ │ │ "classpqxx_1_1const__result__iterator.html": [12, 0, 0, 16],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a08b54a64fc3498de70830555d951aa22": [12, 0, 0, 16, 3],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a08b54a64fc3498de70830555d951aa22": [13, 0, 0, 15, 3],
│ │ │ │ - "classpqxx_1_1const__result__iterator.html#a20640aad643b5309242056662ca06f98": [12, 0, 0, 16, 4],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a20640aad643b5309242056662ca06f98": [13, 0, 0, 15, 4],
│ │ │ │ + "classpqxx_1_1const__result__iterator.html#a20640aad643b5309242056662ca06f98": [12, 0, 0, 16, 4],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a3a7cd99d4e801fca6a538dbad3c7bba6": [13, 0, 0, 15, 8]
│ │ │ │ };
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreeindex1.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -1,163 +1,163 @@
│ │ │ │ var NAVTREEINDEX1 = {
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a3a7cd99d4e801fca6a538dbad3c7bba6": [12, 0, 0, 16, 8],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a5ab2cb35eef449dd26f2fbf61267d7c0": [13, 0, 0, 15, 1],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a5ab2cb35eef449dd26f2fbf61267d7c0": [12, 0, 0, 16, 1],
│ │ │ │ - "classpqxx_1_1const__result__iterator.html#a858d47eebdb1b6055a9f75c32d19d4d2": [13, 0, 0, 15, 6],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#a858d47eebdb1b6055a9f75c32d19d4d2": [12, 0, 0, 16, 6],
│ │ │ │ - "classpqxx_1_1const__result__iterator.html#aac48571e64d26aa73283b8fc9c16d791": [13, 0, 0, 15, 0],
│ │ │ │ + "classpqxx_1_1const__result__iterator.html#a858d47eebdb1b6055a9f75c32d19d4d2": [13, 0, 0, 15, 6],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#aac48571e64d26aa73283b8fc9c16d791": [12, 0, 0, 16, 0],
│ │ │ │ - "classpqxx_1_1const__result__iterator.html#aadd30c2141060d954c16301e3711a02c": [12, 0, 0, 16, 7],
│ │ │ │ + "classpqxx_1_1const__result__iterator.html#aac48571e64d26aa73283b8fc9c16d791": [13, 0, 0, 15, 0],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#aadd30c2141060d954c16301e3711a02c": [13, 0, 0, 15, 7],
│ │ │ │ - "classpqxx_1_1const__result__iterator.html#ab05c15f1e24c12868f03d46bed456843": [13, 0, 0, 15, 2],
│ │ │ │ + "classpqxx_1_1const__result__iterator.html#aadd30c2141060d954c16301e3711a02c": [12, 0, 0, 16, 7],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#ab05c15f1e24c12868f03d46bed456843": [12, 0, 0, 16, 2],
│ │ │ │ + "classpqxx_1_1const__result__iterator.html#ab05c15f1e24c12868f03d46bed456843": [13, 0, 0, 15, 2],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#ae87d3164c4be3ececdde872582aacc61": [13, 0, 0, 15, 5],
│ │ │ │ "classpqxx_1_1const__result__iterator.html#ae87d3164c4be3ececdde872582aacc61": [12, 0, 0, 16, 5],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html": [13, 0, 0, 16],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html": [12, 0, 0, 17],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a18c5f3ab099eac765f63b8e565b7e7b0": [12, 0, 0, 17, 5],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a18c5f3ab099eac765f63b8e565b7e7b0": [13, 0, 0, 16, 5],
│ │ │ │ - "classpqxx_1_1const__reverse__result__iterator.html#a20640aad643b5309242056662ca06f98": [13, 0, 0, 16, 4],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a20640aad643b5309242056662ca06f98": [12, 0, 0, 17, 4],
│ │ │ │ - "classpqxx_1_1const__reverse__result__iterator.html#a422c826fcadc2ee79ac6a61042991910": [13, 0, 0, 16, 1],
│ │ │ │ + "classpqxx_1_1const__reverse__result__iterator.html#a20640aad643b5309242056662ca06f98": [13, 0, 0, 16, 4],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a422c826fcadc2ee79ac6a61042991910": [12, 0, 0, 17, 1],
│ │ │ │ + "classpqxx_1_1const__reverse__result__iterator.html#a422c826fcadc2ee79ac6a61042991910": [13, 0, 0, 16, 1],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a4b1228c093aa8d3173bbad5a64025beb": [13, 0, 0, 16, 2],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a4b1228c093aa8d3173bbad5a64025beb": [12, 0, 0, 17, 2],
│ │ │ │ - "classpqxx_1_1const__reverse__result__iterator.html#a4ce5bf0280d6dce47212969b614c483a": [13, 0, 0, 16, 8],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a4ce5bf0280d6dce47212969b614c483a": [12, 0, 0, 17, 8],
│ │ │ │ - "classpqxx_1_1const__reverse__result__iterator.html#a59ab4766b24359228198a1221e320a9f": [12, 0, 0, 17, 3],
│ │ │ │ + "classpqxx_1_1const__reverse__result__iterator.html#a4ce5bf0280d6dce47212969b614c483a": [13, 0, 0, 16, 8],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a59ab4766b24359228198a1221e320a9f": [13, 0, 0, 16, 3],
│ │ │ │ + "classpqxx_1_1const__reverse__result__iterator.html#a59ab4766b24359228198a1221e320a9f": [12, 0, 0, 17, 3],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a9ef46da8bd48998cf9fae1bcbebea0e0": [13, 0, 0, 16, 0],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#a9ef46da8bd48998cf9fae1bcbebea0e0": [12, 0, 0, 17, 0],
│ │ │ │ - "classpqxx_1_1const__reverse__result__iterator.html#aadd30c2141060d954c16301e3711a02c": [12, 0, 0, 17, 9],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#aadd30c2141060d954c16301e3711a02c": [13, 0, 0, 16, 9],
│ │ │ │ + "classpqxx_1_1const__reverse__result__iterator.html#aadd30c2141060d954c16301e3711a02c": [12, 0, 0, 17, 9],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#ab3a7ba13b137fbd1b12748b788c7b3d7": [12, 0, 0, 17, 7],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#ab3a7ba13b137fbd1b12748b788c7b3d7": [13, 0, 0, 16, 7],
│ │ │ │ - "classpqxx_1_1const__reverse__result__iterator.html#ae87d3164c4be3ececdde872582aacc61": [12, 0, 0, 17, 6],
│ │ │ │ "classpqxx_1_1const__reverse__result__iterator.html#ae87d3164c4be3ececdde872582aacc61": [13, 0, 0, 16, 6],
│ │ │ │ - "classpqxx_1_1const__reverse__row__iterator.html": [13, 0, 0, 17],
│ │ │ │ + "classpqxx_1_1const__reverse__result__iterator.html#ae87d3164c4be3ececdde872582aacc61": [12, 0, 0, 17, 6],
│ │ │ │ "classpqxx_1_1const__reverse__row__iterator.html": [12, 0, 0, 18],
│ │ │ │ - "classpqxx_1_1const__row__iterator.html": [13, 0, 0, 18],
│ │ │ │ + "classpqxx_1_1const__reverse__row__iterator.html": [13, 0, 0, 17],
│ │ │ │ "classpqxx_1_1const__row__iterator.html": [12, 0, 0, 19],
│ │ │ │ - "classpqxx_1_1cursor__base.html": [13, 0, 0, 21],
│ │ │ │ + "classpqxx_1_1const__row__iterator.html": [13, 0, 0, 18],
│ │ │ │ "classpqxx_1_1cursor__base.html": [12, 0, 0, 22],
│ │ │ │ + "classpqxx_1_1cursor__base.html": [13, 0, 0, 21],
│ │ │ │ "classpqxx_1_1cursor__base.html#a093c28cd1c29f1c579b57c849fda8c64": [13, 0, 0, 21, 3],
│ │ │ │ "classpqxx_1_1cursor__base.html#a093c28cd1c29f1c579b57c849fda8c64": [12, 0, 0, 22, 3],
│ │ │ │ - "classpqxx_1_1cursor__base.html#a580405381178880d7804180c0c396fe5": [13, 0, 0, 21, 4],
│ │ │ │ "classpqxx_1_1cursor__base.html#a580405381178880d7804180c0c396fe5": [12, 0, 0, 22, 4],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2": [13, 0, 0, 21, 0],
│ │ │ │ + "classpqxx_1_1cursor__base.html#a580405381178880d7804180c0c396fe5": [13, 0, 0, 21, 4],
│ │ │ │ "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2": [12, 0, 0, 22, 0],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2a7f6c1ed7719885433353a78946b2c5f3": [12, 0, 0, 22, 0, 1],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2": [13, 0, 0, 21, 0],
│ │ │ │ "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2a7f6c1ed7719885433353a78946b2c5f3": [13, 0, 0, 21, 0, 1],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2af440221f717464c87f043899cc117cbf": [12, 0, 0, 22, 0, 0],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2a7f6c1ed7719885433353a78946b2c5f3": [12, 0, 0, 22, 0, 1],
│ │ │ │ "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2af440221f717464c87f043899cc117cbf": [13, 0, 0, 21, 0, 0],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490": [13, 0, 0, 21, 1],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ab2dbdc503c97b0200dd3eca6ae22f0a2af440221f717464c87f043899cc117cbf": [12, 0, 0, 22, 0, 0],
│ │ │ │ "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490": [12, 0, 0, 22, 1],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490": [13, 0, 0, 21, 1],
│ │ │ │ "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490a3ace6a7a5ca4ec3b486f2f35fd2420b0": [13, 0, 0, 21, 1, 0],
│ │ │ │ "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490a3ace6a7a5ca4ec3b486f2f35fd2420b0": [12, 0, 0, 22, 1, 0],
│ │ │ │ "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490a4c37408c49492bfe9f012812226dd1fd": [12, 0, 0, 22, 1, 1],
│ │ │ │ "classpqxx_1_1cursor__base.html#ac06b19ea7f07f4e251560f49bee2e490a4c37408c49492bfe9f012812226dd1fd": [13, 0, 0, 21, 1, 1],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083": [13, 0, 0, 21, 2],
│ │ │ │ "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083": [12, 0, 0, 22, 2],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083a12fa229ee3e760f1ca86d66304554b63": [13, 0, 0, 21, 2, 1],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083": [13, 0, 0, 21, 2],
│ │ │ │ "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083a12fa229ee3e760f1ca86d66304554b63": [12, 0, 0, 22, 2, 1],
│ │ │ │ - "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083a8122c0c4a5eb9c9dbf27ab40a2686eb0": [13, 0, 0, 21, 2, 0],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083a12fa229ee3e760f1ca86d66304554b63": [13, 0, 0, 21, 2, 1],
│ │ │ │ "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083a8122c0c4a5eb9c9dbf27ab40a2686eb0": [12, 0, 0, 22, 2, 0],
│ │ │ │ + "classpqxx_1_1cursor__base.html#ace67894e61fba0ce9f9f6e5b9dd33083a8122c0c4a5eb9c9dbf27ab40a2686eb0": [13, 0, 0, 21, 2, 0],
│ │ │ │ "classpqxx_1_1errorhandler.html": [13, 0, 0, 26],
│ │ │ │ "classpqxx_1_1errorhandler.html": [12, 0, 0, 27],
│ │ │ │ - "classpqxx_1_1errorhandler.html#a397ca98800efffe365f52d5998bb8b94": [13, 0, 0, 26, 0],
│ │ │ │ "classpqxx_1_1errorhandler.html#a397ca98800efffe365f52d5998bb8b94": [12, 0, 0, 27, 0],
│ │ │ │ + "classpqxx_1_1errorhandler.html#a397ca98800efffe365f52d5998bb8b94": [13, 0, 0, 26, 0],
│ │ │ │ "classpqxx_1_1errorhandler.html#a8404c336eaefab488ab326cbcb704993": [12, 0, 0, 27, 1],
│ │ │ │ "classpqxx_1_1errorhandler.html#a8404c336eaefab488ab326cbcb704993": [13, 0, 0, 26, 1],
│ │ │ │ - "classpqxx_1_1exclusive__bound.html": [13, 0, 0, 27],
│ │ │ │ "classpqxx_1_1exclusive__bound.html": [12, 0, 0, 28],
│ │ │ │ - "classpqxx_1_1exclusive__bound.html#a123b3d5b90deec3cbb100a7a45dd447c": [12, 0, 0, 28, 1],
│ │ │ │ + "classpqxx_1_1exclusive__bound.html": [13, 0, 0, 27],
│ │ │ │ "classpqxx_1_1exclusive__bound.html#a123b3d5b90deec3cbb100a7a45dd447c": [13, 0, 0, 27, 1],
│ │ │ │ - "classpqxx_1_1exclusive__bound.html#a9dc981842fd802771fa55cd91088b3ab": [13, 0, 0, 27, 0],
│ │ │ │ + "classpqxx_1_1exclusive__bound.html#a123b3d5b90deec3cbb100a7a45dd447c": [12, 0, 0, 28, 1],
│ │ │ │ "classpqxx_1_1exclusive__bound.html#a9dc981842fd802771fa55cd91088b3ab": [12, 0, 0, 28, 0],
│ │ │ │ + "classpqxx_1_1exclusive__bound.html#a9dc981842fd802771fa55cd91088b3ab": [13, 0, 0, 27, 0],
│ │ │ │ "classpqxx_1_1field.html": [13, 0, 0, 30],
│ │ │ │ "classpqxx_1_1field.html": [12, 0, 0, 31],
│ │ │ │ - "classpqxx_1_1field.html#a0724bd55b4cccf26db6960ef27851fe8": [13, 0, 0, 30, 13],
│ │ │ │ "classpqxx_1_1field.html#a0724bd55b4cccf26db6960ef27851fe8": [12, 0, 0, 31, 13],
│ │ │ │ - "classpqxx_1_1field.html#a1622e11d557e794f188b40b14404f1b1": [12, 0, 0, 31, 5],
│ │ │ │ + "classpqxx_1_1field.html#a0724bd55b4cccf26db6960ef27851fe8": [13, 0, 0, 30, 13],
│ │ │ │ "classpqxx_1_1field.html#a1622e11d557e794f188b40b14404f1b1": [13, 0, 0, 30, 5],
│ │ │ │ - "classpqxx_1_1field.html#a1e87e9981c60d37516326e7ab6b26da6": [12, 0, 0, 31, 18],
│ │ │ │ + "classpqxx_1_1field.html#a1622e11d557e794f188b40b14404f1b1": [12, 0, 0, 31, 5],
│ │ │ │ "classpqxx_1_1field.html#a1e87e9981c60d37516326e7ab6b26da6": [13, 0, 0, 30, 18],
│ │ │ │ - "classpqxx_1_1field.html#a20ceb9e1dd63c481e412af866e88ccaa": [12, 0, 0, 31, 15],
│ │ │ │ + "classpqxx_1_1field.html#a1e87e9981c60d37516326e7ab6b26da6": [12, 0, 0, 31, 18],
│ │ │ │ "classpqxx_1_1field.html#a20ceb9e1dd63c481e412af866e88ccaa": [13, 0, 0, 30, 15],
│ │ │ │ - "classpqxx_1_1field.html#a27f7bb2fe7bd70412feaea0bdcd6464e": [13, 0, 0, 30, 3],
│ │ │ │ + "classpqxx_1_1field.html#a20ceb9e1dd63c481e412af866e88ccaa": [12, 0, 0, 31, 15],
│ │ │ │ "classpqxx_1_1field.html#a27f7bb2fe7bd70412feaea0bdcd6464e": [12, 0, 0, 31, 3],
│ │ │ │ + "classpqxx_1_1field.html#a27f7bb2fe7bd70412feaea0bdcd6464e": [13, 0, 0, 30, 3],
│ │ │ │ "classpqxx_1_1field.html#a28c1716f33c91766259cc89f0d06931d": [13, 0, 0, 30, 23],
│ │ │ │ "classpqxx_1_1field.html#a28c1716f33c91766259cc89f0d06931d": [12, 0, 0, 31, 23],
│ │ │ │ - "classpqxx_1_1field.html#a3094253a229c7d379ba3f1342bc1347d": [13, 0, 0, 30, 4],
│ │ │ │ "classpqxx_1_1field.html#a3094253a229c7d379ba3f1342bc1347d": [12, 0, 0, 31, 4],
│ │ │ │ - "classpqxx_1_1field.html#a31433b3a426646a23e1d11f3242a3885": [13, 0, 0, 30, 20],
│ │ │ │ + "classpqxx_1_1field.html#a3094253a229c7d379ba3f1342bc1347d": [13, 0, 0, 30, 4],
│ │ │ │ "classpqxx_1_1field.html#a31433b3a426646a23e1d11f3242a3885": [12, 0, 0, 31, 20],
│ │ │ │ - "classpqxx_1_1field.html#a5bd96ec505943365c6264f258975b03d": [13, 0, 0, 30, 14],
│ │ │ │ + "classpqxx_1_1field.html#a31433b3a426646a23e1d11f3242a3885": [13, 0, 0, 30, 20],
│ │ │ │ "classpqxx_1_1field.html#a5bd96ec505943365c6264f258975b03d": [12, 0, 0, 31, 14],
│ │ │ │ - "classpqxx_1_1field.html#a5c13391d9f288b83419cca7865b5be62": [12, 0, 0, 31, 19],
│ │ │ │ + "classpqxx_1_1field.html#a5bd96ec505943365c6264f258975b03d": [13, 0, 0, 30, 14],
│ │ │ │ "classpqxx_1_1field.html#a5c13391d9f288b83419cca7865b5be62": [13, 0, 0, 30, 19],
│ │ │ │ - "classpqxx_1_1field.html#a768ec9ffee118b5eb5a4c371afbacc5a": [12, 0, 0, 31, 12],
│ │ │ │ + "classpqxx_1_1field.html#a5c13391d9f288b83419cca7865b5be62": [12, 0, 0, 31, 19],
│ │ │ │ "classpqxx_1_1field.html#a768ec9ffee118b5eb5a4c371afbacc5a": [13, 0, 0, 30, 12],
│ │ │ │ + "classpqxx_1_1field.html#a768ec9ffee118b5eb5a4c371afbacc5a": [12, 0, 0, 31, 12],
│ │ │ │ "classpqxx_1_1field.html#a7792842d762cff5c2dfe20c20e912042": [13, 0, 0, 30, 6],
│ │ │ │ "classpqxx_1_1field.html#a7792842d762cff5c2dfe20c20e912042": [12, 0, 0, 31, 6],
│ │ │ │ - "classpqxx_1_1field.html#a7aad0831fe97de25ba4a4bfd8b41e365": [13, 0, 0, 30, 2],
│ │ │ │ "classpqxx_1_1field.html#a7aad0831fe97de25ba4a4bfd8b41e365": [12, 0, 0, 31, 2],
│ │ │ │ - "classpqxx_1_1field.html#a884880e40a43bad2733a167340896192": [13, 0, 0, 30, 17],
│ │ │ │ + "classpqxx_1_1field.html#a7aad0831fe97de25ba4a4bfd8b41e365": [13, 0, 0, 30, 2],
│ │ │ │ "classpqxx_1_1field.html#a884880e40a43bad2733a167340896192": [12, 0, 0, 31, 17],
│ │ │ │ - "classpqxx_1_1field.html#a8e90cf78347c40fb5a975734e8557675": [13, 0, 0, 30, 11],
│ │ │ │ + "classpqxx_1_1field.html#a884880e40a43bad2733a167340896192": [13, 0, 0, 30, 17],
│ │ │ │ "classpqxx_1_1field.html#a8e90cf78347c40fb5a975734e8557675": [12, 0, 0, 31, 11],
│ │ │ │ - "classpqxx_1_1field.html#aa05908e8ed320fac8c96b9eb4cf46813": [13, 0, 0, 30, 22],
│ │ │ │ + "classpqxx_1_1field.html#a8e90cf78347c40fb5a975734e8557675": [13, 0, 0, 30, 11],
│ │ │ │ "classpqxx_1_1field.html#aa05908e8ed320fac8c96b9eb4cf46813": [12, 0, 0, 31, 22],
│ │ │ │ + "classpqxx_1_1field.html#aa05908e8ed320fac8c96b9eb4cf46813": [13, 0, 0, 30, 22],
│ │ │ │ "classpqxx_1_1field.html#ab6ec6f63e4bad7807f9afbeb8c79b493": [12, 0, 0, 31, 7],
│ │ │ │ "classpqxx_1_1field.html#ab6ec6f63e4bad7807f9afbeb8c79b493": [13, 0, 0, 30, 7],
│ │ │ │ - "classpqxx_1_1field.html#accb1b29590adaf1c265279fc410b2e59": [13, 0, 0, 30, 10],
│ │ │ │ "classpqxx_1_1field.html#accb1b29590adaf1c265279fc410b2e59": [12, 0, 0, 31, 10],
│ │ │ │ + "classpqxx_1_1field.html#accb1b29590adaf1c265279fc410b2e59": [13, 0, 0, 30, 10],
│ │ │ │ "classpqxx_1_1field.html#aceb8e342f34a054d2b2310c59cbf0e52": [13, 0, 0, 30, 1],
│ │ │ │ "classpqxx_1_1field.html#aceb8e342f34a054d2b2310c59cbf0e52": [12, 0, 0, 31, 1],
│ │ │ │ - "classpqxx_1_1field.html#ad11b276da1bb8acc674cb2f8aac11a24": [12, 0, 0, 31, 0],
│ │ │ │ "classpqxx_1_1field.html#ad11b276da1bb8acc674cb2f8aac11a24": [13, 0, 0, 30, 0],
│ │ │ │ + "classpqxx_1_1field.html#ad11b276da1bb8acc674cb2f8aac11a24": [12, 0, 0, 31, 0],
│ │ │ │ "classpqxx_1_1field.html#ad2da9b613fdf2b38a36e92eafd9b223a": [12, 0, 0, 31, 21],
│ │ │ │ "classpqxx_1_1field.html#ad2da9b613fdf2b38a36e92eafd9b223a": [13, 0, 0, 30, 21],
│ │ │ │ "classpqxx_1_1field.html#ad3f84cc67637ba99b7128db75603d03c": [13, 0, 0, 30, 9],
│ │ │ │ "classpqxx_1_1field.html#ad3f84cc67637ba99b7128db75603d03c": [12, 0, 0, 31, 9],
│ │ │ │ - "classpqxx_1_1field.html#adb7ec4ecef586ebbab147b5b181dfff3": [13, 0, 0, 30, 8],
│ │ │ │ "classpqxx_1_1field.html#adb7ec4ecef586ebbab147b5b181dfff3": [12, 0, 0, 31, 8],
│ │ │ │ + "classpqxx_1_1field.html#adb7ec4ecef586ebbab147b5b181dfff3": [13, 0, 0, 30, 8],
│ │ │ │ "classpqxx_1_1field.html#aee9267454dca1a3457fb86e2f0046feb": [12, 0, 0, 31, 16],
│ │ │ │ "classpqxx_1_1field.html#aee9267454dca1a3457fb86e2f0046feb": [13, 0, 0, 30, 16],
│ │ │ │ - "classpqxx_1_1field__streambuf.html": [12, 0, 0, 32],
│ │ │ │ "classpqxx_1_1field__streambuf.html": [13, 0, 0, 31],
│ │ │ │ + "classpqxx_1_1field__streambuf.html": [12, 0, 0, 32],
│ │ │ │ "classpqxx_1_1inclusive__bound.html": [12, 0, 0, 40],
│ │ │ │ "classpqxx_1_1inclusive__bound.html": [13, 0, 0, 39],
│ │ │ │ "classpqxx_1_1inclusive__bound.html#a262003fb0fad4296194b8802a077dfbc": [12, 0, 0, 40, 0],
│ │ │ │ "classpqxx_1_1inclusive__bound.html#a262003fb0fad4296194b8802a077dfbc": [13, 0, 0, 39, 0],
│ │ │ │ "classpqxx_1_1inclusive__bound.html#abdedc091380634eeac13cc78e02fde9b": [13, 0, 0, 39, 1],
│ │ │ │ "classpqxx_1_1inclusive__bound.html#abdedc091380634eeac13cc78e02fde9b": [12, 0, 0, 40, 1],
│ │ │ │ - "classpqxx_1_1internal_1_1basic__robusttransaction.html": [13, 0, 0, 0, 2],
│ │ │ │ "classpqxx_1_1internal_1_1basic__robusttransaction.html": [12, 0, 0, 0, 2],
│ │ │ │ + "classpqxx_1_1internal_1_1basic__robusttransaction.html": [13, 0, 0, 0, 2],
│ │ │ │ "classpqxx_1_1internal_1_1basic__transaction.html": [12, 0, 0, 0, 3],
│ │ │ │ "classpqxx_1_1internal_1_1basic__transaction.html": [13, 0, 0, 0, 3],
│ │ │ │ - "classpqxx_1_1internal_1_1basic__transaction.html#af6f8466bea98765984fac0ed707178e2": [12, 0, 0, 0, 3, 0],
│ │ │ │ "classpqxx_1_1internal_1_1basic__transaction.html#af6f8466bea98765984fac0ed707178e2": [13, 0, 0, 0, 3, 0],
│ │ │ │ - "classpqxx_1_1internal_1_1callgate.html": [12, 0, 0, 0, 5],
│ │ │ │ + "classpqxx_1_1internal_1_1basic__transaction.html#af6f8466bea98765984fac0ed707178e2": [12, 0, 0, 0, 3, 0],
│ │ │ │ "classpqxx_1_1internal_1_1callgate.html": [13, 0, 0, 0, 5],
│ │ │ │ + "classpqxx_1_1internal_1_1callgate.html": [12, 0, 0, 0, 5],
│ │ │ │ "classpqxx_1_1internal_1_1callgate.html#a46153ad21254e58b774ad81b597b73f7": [12, 0, 0, 0, 5, 2],
│ │ │ │ "classpqxx_1_1internal_1_1callgate.html#a46153ad21254e58b774ad81b597b73f7": [13, 0, 0, 0, 5, 2],
│ │ │ │ - "classpqxx_1_1internal_1_1callgate.html#a8afb6d383802c92c3e2a83b590f75be0": [12, 0, 0, 0, 5, 0],
│ │ │ │ "classpqxx_1_1internal_1_1callgate.html#a8afb6d383802c92c3e2a83b590f75be0": [13, 0, 0, 0, 5, 0],
│ │ │ │ - "classpqxx_1_1internal_1_1callgate.html#afb620090453fc901f4fa147ee60bde36": [12, 0, 0, 0, 5, 1],
│ │ │ │ + "classpqxx_1_1internal_1_1callgate.html#a8afb6d383802c92c3e2a83b590f75be0": [12, 0, 0, 0, 5, 0],
│ │ │ │ "classpqxx_1_1internal_1_1callgate.html#afb620090453fc901f4fa147ee60bde36": [13, 0, 0, 0, 5, 1],
│ │ │ │ + "classpqxx_1_1internal_1_1callgate.html#afb620090453fc901f4fa147ee60bde36": [12, 0, 0, 0, 5, 1],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html": [13, 0, 0, 0, 7],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html": [12, 0, 0, 0, 7],
│ │ │ │ - "classpqxx_1_1internal_1_1dynamic__params.html#a2135ab029e5235a29612ffdae27e93de": [13, 0, 0, 0, 7, 2],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html#a2135ab029e5235a29612ffdae27e93de": [12, 0, 0, 0, 7, 2],
│ │ │ │ + "classpqxx_1_1internal_1_1dynamic__params.html#a2135ab029e5235a29612ffdae27e93de": [13, 0, 0, 0, 7, 2],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html#a5b59edc3a62998f76ef9996dda783b81": [12, 0, 0, 0, 7, 0],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html#a5b59edc3a62998f76ef9996dda783b81": [13, 0, 0, 0, 7, 0],
│ │ │ │ - "classpqxx_1_1internal_1_1dynamic__params.html#a6ee02fae3568c5656cb964f7a6d2a710": [13, 0, 0, 0, 7, 3],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html#a6ee02fae3568c5656cb964f7a6d2a710": [12, 0, 0, 0, 7, 3],
│ │ │ │ + "classpqxx_1_1internal_1_1dynamic__params.html#a6ee02fae3568c5656cb964f7a6d2a710": [13, 0, 0, 0, 7, 3],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html#aadfb6e389288cca5a5f5b89cc3a2fdc3": [13, 0, 0, 0, 7, 1],
│ │ │ │ "classpqxx_1_1internal_1_1dynamic__params.html#aadfb6e389288cca5a5f5b89cc3a2fdc3": [12, 0, 0, 0, 7, 1],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1connection__errorhandler.html": [13, 0, 0, 0, 0, 0],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1connection__largeobject.html": [13, 0, 0, 0, 0, 1],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1connection__notification__receiver.html": [13, 0, 0, 0, 0, 2],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1connection__pipeline.html": [13, 0, 0, 0, 0, 3],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1connection__sql__cursor.html": [13, 0, 0, 0, 0, 4],
│ │ │ │ @@ -171,82 +171,82 @@
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1result__creation.html": [13, 0, 0, 0, 0, 13],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1result__pipeline.html": [13, 0, 0, 0, 0, 14],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1result__sql__cursor.html": [13, 0, 0, 0, 0, 15],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1transaction__sql__cursor.html": [13, 0, 0, 0, 0, 16],
│ │ │ │ "classpqxx_1_1internal_1_1gate_1_1transaction__transaction__focus.html": [13, 0, 0, 0, 0, 17],
│ │ │ │ "classpqxx_1_1internal_1_1result__iter.html": [12, 0, 0, 0, 26],
│ │ │ │ "classpqxx_1_1internal_1_1result__iter.html": [13, 0, 0, 0, 26],
│ │ │ │ - "classpqxx_1_1internal_1_1result__iter.html#a0c920149f5043b7d03b7ac765447a929": [13, 0, 0, 0, 26, 0],
│ │ │ │ "classpqxx_1_1internal_1_1result__iter.html#a0c920149f5043b7d03b7ac765447a929": [12, 0, 0, 0, 26, 0],
│ │ │ │ + "classpqxx_1_1internal_1_1result__iter.html#a0c920149f5043b7d03b7ac765447a929": [13, 0, 0, 0, 26, 0],
│ │ │ │ "classpqxx_1_1internal_1_1result__iter.html#ace9b554271a8b57ab7230da00ef319ea": [12, 0, 0, 0, 26, 1],
│ │ │ │ "classpqxx_1_1internal_1_1result__iter.html#ace9b554271a8b57ab7230da00ef319ea": [13, 0, 0, 0, 26, 1],
│ │ │ │ - "classpqxx_1_1internal_1_1result__iteration.html": [12, 0, 0, 0, 27],
│ │ │ │ "classpqxx_1_1internal_1_1result__iteration.html": [13, 0, 0, 0, 27],
│ │ │ │ - "classpqxx_1_1internal_1_1sql__cursor.html": [12, 0, 0, 0, 28],
│ │ │ │ + "classpqxx_1_1internal_1_1result__iteration.html": [12, 0, 0, 0, 27],
│ │ │ │ "classpqxx_1_1internal_1_1sql__cursor.html": [13, 0, 0, 0, 28],
│ │ │ │ + "classpqxx_1_1internal_1_1sql__cursor.html": [12, 0, 0, 0, 28],
│ │ │ │ "classpqxx_1_1internal_1_1sql__cursor.html#a4c11be9b28736e1adaf8b9a3eec41c79": [12, 0, 0, 0, 28, 1],
│ │ │ │ "classpqxx_1_1internal_1_1sql__cursor.html#a4c11be9b28736e1adaf8b9a3eec41c79": [13, 0, 0, 0, 28, 1],
│ │ │ │ - "classpqxx_1_1internal_1_1sql__cursor.html#aa081894fff9516d7dc26a8f724db21aa": [12, 0, 0, 0, 28, 0],
│ │ │ │ "classpqxx_1_1internal_1_1sql__cursor.html#aa081894fff9516d7dc26a8f724db21aa": [13, 0, 0, 0, 28, 0],
│ │ │ │ - "classpqxx_1_1internal_1_1sql__cursor.html#ac5c2280d1b3dde3922d1502235cfb01f": [12, 0, 0, 0, 28, 2],
│ │ │ │ + "classpqxx_1_1internal_1_1sql__cursor.html#aa081894fff9516d7dc26a8f724db21aa": [12, 0, 0, 0, 28, 0],
│ │ │ │ "classpqxx_1_1internal_1_1sql__cursor.html#ac5c2280d1b3dde3922d1502235cfb01f": [13, 0, 0, 0, 28, 2],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__from__input__iterator.html": [12, 0, 0, 0, 29],
│ │ │ │ + "classpqxx_1_1internal_1_1sql__cursor.html#ac5c2280d1b3dde3922d1502235cfb01f": [12, 0, 0, 0, 28, 2],
│ │ │ │ "classpqxx_1_1internal_1_1stream__from__input__iterator.html": [13, 0, 0, 0, 29],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__from__input__iterator.html": [12, 0, 0, 0, 29],
│ │ │ │ "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a23573499bd91d017c08dd9438bc49ad4": [13, 0, 0, 0, 29, 2],
│ │ │ │ "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a23573499bd91d017c08dd9438bc49ad4": [12, 0, 0, 0, 29, 2],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a30bf5388b274d3e8b27568a03f061762": [13, 0, 0, 0, 29, 1],
│ │ │ │ "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a30bf5388b274d3e8b27568a03f061762": [12, 0, 0, 0, 29, 1],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a30bf5388b274d3e8b27568a03f061762": [13, 0, 0, 0, 29, 1],
│ │ │ │ "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a6ee371294bb42b9e604d7313d0878a61": [12, 0, 0, 0, 29, 0],
│ │ │ │ "classpqxx_1_1internal_1_1stream__from__input__iterator.html#a6ee371294bb42b9e604d7313d0878a61": [13, 0, 0, 0, 29, 0],
│ │ │ │ "classpqxx_1_1internal_1_1stream__input__iteration.html": [12, 0, 0, 0, 30],
│ │ │ │ "classpqxx_1_1internal_1_1stream__input__iteration.html": [13, 0, 0, 0, 30],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query.html": [12, 0, 0, 0, 31],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html": [13, 0, 0, 0, 31],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query.html": [12, 0, 0, 0, 31],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#a173d0e79729e42ccb3841f1e6d556376": [12, 0, 0, 0, 31, 3],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#a173d0e79729e42ccb3841f1e6d556376": [13, 0, 0, 0, 31, 3],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query.html#a82a1a8435b756b9cb075f4a9a2fc6c09": [13, 0, 0, 0, 31, 0],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#a82a1a8435b756b9cb075f4a9a2fc6c09": [12, 0, 0, 0, 31, 0],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query.html#aad5061fd7b06c89a98e317ce6901ab58": [13, 0, 0, 0, 31, 5],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query.html#a82a1a8435b756b9cb075f4a9a2fc6c09": [13, 0, 0, 0, 31, 0],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#aad5061fd7b06c89a98e317ce6901ab58": [12, 0, 0, 0, 31, 5],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query.html#aadbcbef19d5bd2509a8ad9db685771ae": [13, 0, 0, 0, 31, 2],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query.html#aad5061fd7b06c89a98e317ce6901ab58": [13, 0, 0, 0, 31, 5],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#aadbcbef19d5bd2509a8ad9db685771ae": [12, 0, 0, 0, 31, 2],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query.html#ab7226acb2456b26777af0dd772e94bc9": [12, 0, 0, 0, 31, 1],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query.html#aadbcbef19d5bd2509a8ad9db685771ae": [13, 0, 0, 0, 31, 2],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#ab7226acb2456b26777af0dd772e94bc9": [13, 0, 0, 0, 31, 1],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query.html#ab7226acb2456b26777af0dd772e94bc9": [12, 0, 0, 0, 31, 1],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#aed01b072e34514ec0ca9ca3e7adc692e": [12, 0, 0, 0, 31, 6],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#aed01b072e34514ec0ca9ca3e7adc692e": [13, 0, 0, 0, 31, 6],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#afccfe3b559c68913f5161f3a8ee0ad80": [12, 0, 0, 0, 31, 4],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query.html#afccfe3b559c68913f5161f3a8ee0ad80": [13, 0, 0, 0, 31, 4],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query__input__iterator.html": [12, 0, 0, 0, 33],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html": [13, 0, 0, 0, 33],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query__input__iterator.html": [12, 0, 0, 0, 33],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a0c261e07d71c54c3df1873bd7682f141": [12, 0, 0, 0, 33, 2],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a0c261e07d71c54c3df1873bd7682f141": [13, 0, 0, 0, 33, 2],
│ │ │ │ - "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a207326fe0c7f51eccfa61be42d20188e": [12, 0, 0, 0, 33, 0],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a207326fe0c7f51eccfa61be42d20188e": [13, 0, 0, 0, 33, 0],
│ │ │ │ + "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a207326fe0c7f51eccfa61be42d20188e": [12, 0, 0, 0, 33, 0],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a27cb5d24969b0b2102987fb8f3ec3b62": [13, 0, 0, 0, 33, 4],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a27cb5d24969b0b2102987fb8f3ec3b62": [12, 0, 0, 0, 33, 4],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a9c57abc31dc9b272b395c6b2c216ad7a": [12, 0, 0, 0, 33, 1],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#a9c57abc31dc9b272b395c6b2c216ad7a": [13, 0, 0, 0, 33, 1],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#abc1cf24fa7ceff09abe835eeeffdb4e2": [12, 0, 0, 0, 33, 3],
│ │ │ │ "classpqxx_1_1internal_1_1stream__query__input__iterator.html#abc1cf24fa7ceff09abe835eeeffdb4e2": [13, 0, 0, 0, 33, 3],
│ │ │ │ "classpqxx_1_1largeobject.html": [12, 0, 0, 48],
│ │ │ │ "classpqxx_1_1largeobject.html": [13, 0, 0, 47],
│ │ │ │ "classpqxx_1_1largeobject.html#a00f0df981995f7ca9991ba7162bdaa16": [12, 0, 0, 48, 9],
│ │ │ │ "classpqxx_1_1largeobject.html#a00f0df981995f7ca9991ba7162bdaa16": [13, 0, 0, 47, 9],
│ │ │ │ - "classpqxx_1_1largeobject.html#a0f1c6e0804d1829c81efb76f39db7dd7": [12, 0, 0, 48, 11],
│ │ │ │ "classpqxx_1_1largeobject.html#a0f1c6e0804d1829c81efb76f39db7dd7": [13, 0, 0, 47, 11],
│ │ │ │ + "classpqxx_1_1largeobject.html#a0f1c6e0804d1829c81efb76f39db7dd7": [12, 0, 0, 48, 11],
│ │ │ │ "classpqxx_1_1largeobject.html#a12f426d5cd7f173de01551fa1629ddf4": [13, 0, 0, 47, 12],
│ │ │ │ "classpqxx_1_1largeobject.html#a12f426d5cd7f173de01551fa1629ddf4": [12, 0, 0, 48, 12],
│ │ │ │ "classpqxx_1_1largeobject.html#a297714bf161904cce728d0255e4efccd": [12, 0, 0, 48, 3],
│ │ │ │ "classpqxx_1_1largeobject.html#a297714bf161904cce728d0255e4efccd": [13, 0, 0, 47, 3],
│ │ │ │ "classpqxx_1_1largeobject.html#a4a7766ea88d7e0aa68ed78e0f4bb8cab": [12, 0, 0, 48, 8],
│ │ │ │ "classpqxx_1_1largeobject.html#a4a7766ea88d7e0aa68ed78e0f4bb8cab": [13, 0, 0, 47, 8],
│ │ │ │ - "classpqxx_1_1largeobject.html#a4fb862c252771c8ad4449f8badf2b26f": [12, 0, 0, 48, 13],
│ │ │ │ "classpqxx_1_1largeobject.html#a4fb862c252771c8ad4449f8badf2b26f": [13, 0, 0, 47, 13],
│ │ │ │ + "classpqxx_1_1largeobject.html#a4fb862c252771c8ad4449f8badf2b26f": [12, 0, 0, 48, 13],
│ │ │ │ "classpqxx_1_1largeobject.html#a5fa9d7249fd0d8b471e7df2af8f96df2": [12, 0, 0, 48, 2],
│ │ │ │ "classpqxx_1_1largeobject.html#a5fa9d7249fd0d8b471e7df2af8f96df2": [13, 0, 0, 47, 2],
│ │ │ │ - "classpqxx_1_1largeobject.html#a90efd57a423686ee47c4dbb6b5c3b187": [13, 0, 0, 47, 7],
│ │ │ │ "classpqxx_1_1largeobject.html#a90efd57a423686ee47c4dbb6b5c3b187": [12, 0, 0, 48, 7],
│ │ │ │ - "classpqxx_1_1largeobject.html#a9450db026a6206b00fdd95054360e224": [12, 0, 0, 48, 0],
│ │ │ │ + "classpqxx_1_1largeobject.html#a90efd57a423686ee47c4dbb6b5c3b187": [13, 0, 0, 47, 7],
│ │ │ │ "classpqxx_1_1largeobject.html#a9450db026a6206b00fdd95054360e224": [13, 0, 0, 47, 0],
│ │ │ │ + "classpqxx_1_1largeobject.html#a9450db026a6206b00fdd95054360e224": [12, 0, 0, 48, 0],
│ │ │ │ "classpqxx_1_1largeobject.html#ad326bef1920744c3d450406f43dbc6b5": [12, 0, 0, 48, 6],
│ │ │ │ "classpqxx_1_1largeobject.html#ad326bef1920744c3d450406f43dbc6b5": [13, 0, 0, 47, 6]
│ │ │ │ };
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreeindex2.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -1,252 +1,252 @@
│ │ │ │ var NAVTREEINDEX2 = {
│ │ │ │ "classpqxx_1_1largeobject.html#adb9c38154d2454560bfe56bfa7b5d673": [12, 0, 0, 48, 4],
│ │ │ │ "classpqxx_1_1largeobject.html#adb9c38154d2454560bfe56bfa7b5d673": [13, 0, 0, 47, 4],
│ │ │ │ "classpqxx_1_1largeobject.html#ae33a0403408df984ad0999eb9a33db30": [13, 0, 0, 47, 10],
│ │ │ │ "classpqxx_1_1largeobject.html#ae33a0403408df984ad0999eb9a33db30": [12, 0, 0, 48, 10],
│ │ │ │ - "classpqxx_1_1largeobject.html#af210c3d0b39442a5ce9b3b1508d96c84": [13, 0, 0, 47, 5],
│ │ │ │ "classpqxx_1_1largeobject.html#af210c3d0b39442a5ce9b3b1508d96c84": [12, 0, 0, 48, 5],
│ │ │ │ - "classpqxx_1_1largeobject.html#af56aa193ac2fd0664dc0d5a88df6716a": [13, 0, 0, 47, 1],
│ │ │ │ + "classpqxx_1_1largeobject.html#af210c3d0b39442a5ce9b3b1508d96c84": [13, 0, 0, 47, 5],
│ │ │ │ "classpqxx_1_1largeobject.html#af56aa193ac2fd0664dc0d5a88df6716a": [12, 0, 0, 48, 1],
│ │ │ │ + "classpqxx_1_1largeobject.html#af56aa193ac2fd0664dc0d5a88df6716a": [13, 0, 0, 47, 1],
│ │ │ │ "classpqxx_1_1largeobject__streambuf.html": [12, 0, 0, 49],
│ │ │ │ "classpqxx_1_1largeobject__streambuf.html": [13, 0, 0, 48],
│ │ │ │ "classpqxx_1_1largeobject__streambuf.html#a9c9d53a14e148dec15f632fcb8f51366": [13, 0, 0, 48, 0],
│ │ │ │ "classpqxx_1_1largeobject__streambuf.html#a9c9d53a14e148dec15f632fcb8f51366": [12, 0, 0, 49, 0],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html": [13, 0, 0, 49],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html": [12, 0, 0, 50],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a00f0df981995f7ca9991ba7162bdaa16": [12, 0, 0, 50, 14],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a00f0df981995f7ca9991ba7162bdaa16": [13, 0, 0, 49, 14],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a0f1c6e0804d1829c81efb76f39db7dd7": [13, 0, 0, 49, 16],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a0f1c6e0804d1829c81efb76f39db7dd7": [12, 0, 0, 50, 16],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a12f426d5cd7f173de01551fa1629ddf4": [13, 0, 0, 49, 19],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a0f1c6e0804d1829c81efb76f39db7dd7": [13, 0, 0, 49, 16],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a12f426d5cd7f173de01551fa1629ddf4": [12, 0, 0, 50, 19],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a12f426d5cd7f173de01551fa1629ddf4": [13, 0, 0, 49, 19],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a4665a2bbcffa4eb07725a9d17f1e0430": [12, 0, 0, 50, 8],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a4665a2bbcffa4eb07725a9d17f1e0430": [13, 0, 0, 49, 8],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a4a7766ea88d7e0aa68ed78e0f4bb8cab": [13, 0, 0, 49, 13],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a4a7766ea88d7e0aa68ed78e0f4bb8cab": [12, 0, 0, 50, 13],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a4fb862c252771c8ad4449f8badf2b26f": [13, 0, 0, 49, 22],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a4fb862c252771c8ad4449f8badf2b26f": [12, 0, 0, 50, 22],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a5e8690c9b3bcdb7b4045e619597aec69": [13, 0, 0, 49, 18],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a5e8690c9b3bcdb7b4045e619597aec69": [12, 0, 0, 50, 18],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a60ff3072349074e732d0c00e2aefc498": [13, 0, 0, 49, 24],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a60ff3072349074e732d0c00e2aefc498": [12, 0, 0, 50, 24],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a6b09598014eca3c4c4b8a0c1495185d3": [12, 0, 0, 50, 0],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a6b09598014eca3c4c4b8a0c1495185d3": [13, 0, 0, 49, 0],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a7f372c2836b12287ecd4b15b8d8eacb5": [12, 0, 0, 50, 3],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a7f372c2836b12287ecd4b15b8d8eacb5": [13, 0, 0, 49, 3],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a86298b9dd2e670858c9e04f3d4043b7e": [12, 0, 0, 50, 7],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a86298b9dd2e670858c9e04f3d4043b7e": [13, 0, 0, 49, 7],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a8a693bb1e0478d0d3a3d19ef904071bf": [13, 0, 0, 49, 5],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a86298b9dd2e670858c9e04f3d4043b7e": [12, 0, 0, 50, 7],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a8a693bb1e0478d0d3a3d19ef904071bf": [12, 0, 0, 50, 5],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a90efd57a423686ee47c4dbb6b5c3b187": [12, 0, 0, 50, 12],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a8a693bb1e0478d0d3a3d19ef904071bf": [13, 0, 0, 49, 5],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a90efd57a423686ee47c4dbb6b5c3b187": [13, 0, 0, 49, 12],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a9230026566fa1f7c32d2abcc2a5571eb": [13, 0, 0, 49, 1],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a90efd57a423686ee47c4dbb6b5c3b187": [12, 0, 0, 50, 12],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a9230026566fa1f7c32d2abcc2a5571eb": [12, 0, 0, 50, 1],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#a972d8559cae789984a194c98a88b943b": [12, 0, 0, 50, 21],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a9230026566fa1f7c32d2abcc2a5571eb": [13, 0, 0, 49, 1],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#a972d8559cae789984a194c98a88b943b": [13, 0, 0, 49, 21],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#a972d8559cae789984a194c98a88b943b": [12, 0, 0, 50, 21],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ab2d72e776c6703ac62ef0657d6ac1df8": [12, 0, 0, 50, 9],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ab2d72e776c6703ac62ef0657d6ac1df8": [13, 0, 0, 49, 9],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ab3a49a4c8e094cb8d65f20c3e5541c73": [12, 0, 0, 50, 2],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ab3a49a4c8e094cb8d65f20c3e5541c73": [13, 0, 0, 49, 2],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#ac43433ab08b3ccb34fc72ea4975bcda2": [12, 0, 0, 50, 6],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ac43433ab08b3ccb34fc72ea4975bcda2": [13, 0, 0, 49, 6],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#acdbc859cf3afd0ddcc4aa555ef36c35a": [12, 0, 0, 50, 23],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#ac43433ab08b3ccb34fc72ea4975bcda2": [12, 0, 0, 50, 6],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#acdbc859cf3afd0ddcc4aa555ef36c35a": [13, 0, 0, 49, 23],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#ad326bef1920744c3d450406f43dbc6b5": [12, 0, 0, 50, 11],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#acdbc859cf3afd0ddcc4aa555ef36c35a": [12, 0, 0, 50, 23],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ad326bef1920744c3d450406f43dbc6b5": [13, 0, 0, 49, 11],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#ad326bef1920744c3d450406f43dbc6b5": [12, 0, 0, 50, 11],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ad539bb1d48ea71532455f56bf118a3ff": [13, 0, 0, 49, 17],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ad539bb1d48ea71532455f56bf118a3ff": [12, 0, 0, 50, 17],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ad8cc68a38208f6ee1c2f9dcf97628990": [12, 0, 0, 50, 4],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ad8cc68a38208f6ee1c2f9dcf97628990": [13, 0, 0, 49, 4],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#addc309fe11d4d3e29547b149e4600199": [12, 0, 0, 50, 25],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#addc309fe11d4d3e29547b149e4600199": [13, 0, 0, 49, 25],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#ae33a0403408df984ad0999eb9a33db30": [12, 0, 0, 50, 15],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ae33a0403408df984ad0999eb9a33db30": [13, 0, 0, 49, 15],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#ae33a0403408df984ad0999eb9a33db30": [12, 0, 0, 50, 15],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ae74922e23584d6410cf37f89f10c1a53": [12, 0, 0, 50, 20],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#ae74922e23584d6410cf37f89f10c1a53": [13, 0, 0, 49, 20],
│ │ │ │ - "classpqxx_1_1largeobjectaccess.html#af210c3d0b39442a5ce9b3b1508d96c84": [13, 0, 0, 49, 10],
│ │ │ │ "classpqxx_1_1largeobjectaccess.html#af210c3d0b39442a5ce9b3b1508d96c84": [12, 0, 0, 50, 10],
│ │ │ │ - "classpqxx_1_1notification__receiver.html": [13, 0, 0, 55],
│ │ │ │ + "classpqxx_1_1largeobjectaccess.html#af210c3d0b39442a5ce9b3b1508d96c84": [13, 0, 0, 49, 10],
│ │ │ │ "classpqxx_1_1notification__receiver.html": [12, 0, 0, 56],
│ │ │ │ + "classpqxx_1_1notification__receiver.html": [13, 0, 0, 55],
│ │ │ │ "classpqxx_1_1notification__receiver.html#a44ffe1ed8ec8020f4106ef8427e09d17": [13, 0, 0, 55, 1],
│ │ │ │ "classpqxx_1_1notification__receiver.html#a44ffe1ed8ec8020f4106ef8427e09d17": [12, 0, 0, 56, 1],
│ │ │ │ "classpqxx_1_1notification__receiver.html#a4779f6b712bf7a1d5ab3253b8d274db9": [13, 0, 0, 55, 0],
│ │ │ │ "classpqxx_1_1notification__receiver.html#a4779f6b712bf7a1d5ab3253b8d274db9": [12, 0, 0, 56, 0],
│ │ │ │ "classpqxx_1_1notification__receiver.html#a57732bae437844782bdfe6314f829d9a": [12, 0, 0, 56, 3],
│ │ │ │ "classpqxx_1_1notification__receiver.html#a57732bae437844782bdfe6314f829d9a": [13, 0, 0, 55, 3],
│ │ │ │ - "classpqxx_1_1notification__receiver.html#abb6fd7dd38319fc35e354e23d7f337d0": [13, 0, 0, 55, 4],
│ │ │ │ "classpqxx_1_1notification__receiver.html#abb6fd7dd38319fc35e354e23d7f337d0": [12, 0, 0, 56, 4],
│ │ │ │ + "classpqxx_1_1notification__receiver.html#abb6fd7dd38319fc35e354e23d7f337d0": [13, 0, 0, 55, 4],
│ │ │ │ "classpqxx_1_1notification__receiver.html#ae4ed572d3a137b331d363bae82f4ce9b": [13, 0, 0, 55, 2],
│ │ │ │ "classpqxx_1_1notification__receiver.html#ae4ed572d3a137b331d363bae82f4ce9b": [12, 0, 0, 56, 2],
│ │ │ │ "classpqxx_1_1notification__receiver.html#afcf701e264edd9a14513765f542b446d": [13, 0, 0, 55, 5],
│ │ │ │ "classpqxx_1_1notification__receiver.html#afcf701e264edd9a14513765f542b446d": [12, 0, 0, 56, 5],
│ │ │ │ - "classpqxx_1_1params.html": [12, 0, 0, 81],
│ │ │ │ "classpqxx_1_1params.html": [13, 0, 0, 80],
│ │ │ │ - "classpqxx_1_1params.html#a04a926a0572022f84777b11db9f8262c": [13, 0, 0, 80, 3],
│ │ │ │ + "classpqxx_1_1params.html": [12, 0, 0, 81],
│ │ │ │ "classpqxx_1_1params.html#a04a926a0572022f84777b11db9f8262c": [12, 0, 0, 81, 3],
│ │ │ │ - "classpqxx_1_1params.html#a1060238be2437028e837ec785594a9ad": [12, 0, 0, 81, 10],
│ │ │ │ + "classpqxx_1_1params.html#a04a926a0572022f84777b11db9f8262c": [13, 0, 0, 80, 3],
│ │ │ │ "classpqxx_1_1params.html#a1060238be2437028e837ec785594a9ad": [13, 0, 0, 80, 10],
│ │ │ │ - "classpqxx_1_1params.html#a1a3ca8939fbeec4db4f7d69c8014a937": [13, 0, 0, 80, 14],
│ │ │ │ + "classpqxx_1_1params.html#a1060238be2437028e837ec785594a9ad": [12, 0, 0, 81, 10],
│ │ │ │ "classpqxx_1_1params.html#a1a3ca8939fbeec4db4f7d69c8014a937": [12, 0, 0, 81, 14],
│ │ │ │ - "classpqxx_1_1params.html#a43ca3b56e662cc3e04b6608e0b6c8545": [13, 0, 0, 80, 11],
│ │ │ │ + "classpqxx_1_1params.html#a1a3ca8939fbeec4db4f7d69c8014a937": [13, 0, 0, 80, 14],
│ │ │ │ "classpqxx_1_1params.html#a43ca3b56e662cc3e04b6608e0b6c8545": [12, 0, 0, 81, 11],
│ │ │ │ - "classpqxx_1_1params.html#a60b0a2f320c12b241e429865faf5bfdf": [13, 0, 0, 80, 4],
│ │ │ │ + "classpqxx_1_1params.html#a43ca3b56e662cc3e04b6608e0b6c8545": [13, 0, 0, 80, 11],
│ │ │ │ "classpqxx_1_1params.html#a60b0a2f320c12b241e429865faf5bfdf": [12, 0, 0, 81, 4],
│ │ │ │ - "classpqxx_1_1params.html#a6ecf59a6ac483fe23e051ae654abc2b0": [12, 0, 0, 81, 12],
│ │ │ │ + "classpqxx_1_1params.html#a60b0a2f320c12b241e429865faf5bfdf": [13, 0, 0, 80, 4],
│ │ │ │ "classpqxx_1_1params.html#a6ecf59a6ac483fe23e051ae654abc2b0": [13, 0, 0, 80, 12],
│ │ │ │ - "classpqxx_1_1params.html#a805a7f2126cb791e99a0a0d72f419739": [13, 0, 0, 80, 8],
│ │ │ │ + "classpqxx_1_1params.html#a6ecf59a6ac483fe23e051ae654abc2b0": [12, 0, 0, 81, 12],
│ │ │ │ "classpqxx_1_1params.html#a805a7f2126cb791e99a0a0d72f419739": [12, 0, 0, 81, 8],
│ │ │ │ + "classpqxx_1_1params.html#a805a7f2126cb791e99a0a0d72f419739": [13, 0, 0, 80, 8],
│ │ │ │ "classpqxx_1_1params.html#a9076185bec59cb6631e15d64895cc163": [12, 0, 0, 81, 9],
│ │ │ │ "classpqxx_1_1params.html#a9076185bec59cb6631e15d64895cc163": [13, 0, 0, 80, 9],
│ │ │ │ - "classpqxx_1_1params.html#a92316e93554654d7a0cc9a2aa771a005": [12, 0, 0, 81, 5],
│ │ │ │ "classpqxx_1_1params.html#a92316e93554654d7a0cc9a2aa771a005": [13, 0, 0, 80, 5],
│ │ │ │ + "classpqxx_1_1params.html#a92316e93554654d7a0cc9a2aa771a005": [12, 0, 0, 81, 5],
│ │ │ │ "classpqxx_1_1params.html#a92ab73003a8b8b022e803c06b1add2ff": [13, 0, 0, 80, 7],
│ │ │ │ "classpqxx_1_1params.html#a92ab73003a8b8b022e803c06b1add2ff": [12, 0, 0, 81, 7],
│ │ │ │ - "classpqxx_1_1params.html#aae93362be81c11016b85d15f61a66db2": [12, 0, 0, 81, 2],
│ │ │ │ "classpqxx_1_1params.html#aae93362be81c11016b85d15f61a66db2": [13, 0, 0, 80, 2],
│ │ │ │ + "classpqxx_1_1params.html#aae93362be81c11016b85d15f61a66db2": [12, 0, 0, 81, 2],
│ │ │ │ "classpqxx_1_1params.html#ab23b2a3b2a58bfd03fca36022ebce8b4": [12, 0, 0, 81, 15],
│ │ │ │ "classpqxx_1_1params.html#ab23b2a3b2a58bfd03fca36022ebce8b4": [13, 0, 0, 80, 15],
│ │ │ │ - "classpqxx_1_1params.html#ab98e56ae60004ff9726f23f64e2d0ffa": [12, 0, 0, 81, 6],
│ │ │ │ "classpqxx_1_1params.html#ab98e56ae60004ff9726f23f64e2d0ffa": [13, 0, 0, 80, 6],
│ │ │ │ + "classpqxx_1_1params.html#ab98e56ae60004ff9726f23f64e2d0ffa": [12, 0, 0, 81, 6],
│ │ │ │ "classpqxx_1_1params.html#ad15fdabb428bc93cdb0a6c4354a9069c": [13, 0, 0, 80, 0],
│ │ │ │ "classpqxx_1_1params.html#ad15fdabb428bc93cdb0a6c4354a9069c": [12, 0, 0, 81, 0],
│ │ │ │ "classpqxx_1_1params.html#ae53445f42f2698b93ba7860264ccea2e": [13, 0, 0, 80, 1],
│ │ │ │ "classpqxx_1_1params.html#ae53445f42f2698b93ba7860264ccea2e": [12, 0, 0, 81, 1],
│ │ │ │ "classpqxx_1_1params.html#af736445f5bb035a646ed84f8843c91e4": [13, 0, 0, 80, 13],
│ │ │ │ "classpqxx_1_1params.html#af736445f5bb035a646ed84f8843c91e4": [12, 0, 0, 81, 13],
│ │ │ │ - "classpqxx_1_1pipeline.html": [12, 0, 0, 82],
│ │ │ │ "classpqxx_1_1pipeline.html": [13, 0, 0, 81],
│ │ │ │ + "classpqxx_1_1pipeline.html": [12, 0, 0, 82],
│ │ │ │ "classpqxx_1_1pipeline.html#a06667e2e73b597586e61cae8533a2874": [13, 0, 0, 81, 9],
│ │ │ │ "classpqxx_1_1pipeline.html#a06667e2e73b597586e61cae8533a2874": [12, 0, 0, 82, 9],
│ │ │ │ - "classpqxx_1_1pipeline.html#a0c80a5e68052b2c35089e384e3c842ce": [12, 0, 0, 82, 1],
│ │ │ │ "classpqxx_1_1pipeline.html#a0c80a5e68052b2c35089e384e3c842ce": [13, 0, 0, 81, 1],
│ │ │ │ - "classpqxx_1_1pipeline.html#a19c508710d0025993e41512f23de56be": [12, 0, 0, 82, 12],
│ │ │ │ + "classpqxx_1_1pipeline.html#a0c80a5e68052b2c35089e384e3c842ce": [12, 0, 0, 82, 1],
│ │ │ │ "classpqxx_1_1pipeline.html#a19c508710d0025993e41512f23de56be": [13, 0, 0, 81, 12],
│ │ │ │ + "classpqxx_1_1pipeline.html#a19c508710d0025993e41512f23de56be": [12, 0, 0, 82, 12],
│ │ │ │ "classpqxx_1_1pipeline.html#a33a890c64efc37d76f3c649f145ff950": [12, 0, 0, 82, 6],
│ │ │ │ "classpqxx_1_1pipeline.html#a33a890c64efc37d76f3c649f145ff950": [13, 0, 0, 81, 6],
│ │ │ │ "classpqxx_1_1pipeline.html#a5de968e394d7d9b68cfd84f9ae93f5bb": [13, 0, 0, 81, 10],
│ │ │ │ "classpqxx_1_1pipeline.html#a5de968e394d7d9b68cfd84f9ae93f5bb": [12, 0, 0, 82, 10],
│ │ │ │ - "classpqxx_1_1pipeline.html#a5f8dfe951c18c19f24dd2e7a30ef276d": [12, 0, 0, 82, 11],
│ │ │ │ "classpqxx_1_1pipeline.html#a5f8dfe951c18c19f24dd2e7a30ef276d": [13, 0, 0, 81, 11],
│ │ │ │ + "classpqxx_1_1pipeline.html#a5f8dfe951c18c19f24dd2e7a30ef276d": [12, 0, 0, 82, 11],
│ │ │ │ "classpqxx_1_1pipeline.html#a7808218284e98bb5dffaf110defd1b33": [12, 0, 0, 82, 5],
│ │ │ │ "classpqxx_1_1pipeline.html#a7808218284e98bb5dffaf110defd1b33": [13, 0, 0, 81, 5],
│ │ │ │ - "classpqxx_1_1pipeline.html#a808f4fc39c77e490171d54a5554b337d": [12, 0, 0, 82, 7],
│ │ │ │ "classpqxx_1_1pipeline.html#a808f4fc39c77e490171d54a5554b337d": [13, 0, 0, 81, 7],
│ │ │ │ + "classpqxx_1_1pipeline.html#a808f4fc39c77e490171d54a5554b337d": [12, 0, 0, 82, 7],
│ │ │ │ "classpqxx_1_1pipeline.html#a92463b4b599f681a372016d5dbbe016d": [13, 0, 0, 81, 2],
│ │ │ │ "classpqxx_1_1pipeline.html#a92463b4b599f681a372016d5dbbe016d": [12, 0, 0, 82, 2],
│ │ │ │ "classpqxx_1_1pipeline.html#ab375b0b4e02c7f1a48602c4186fbbbd7": [13, 0, 0, 81, 4],
│ │ │ │ "classpqxx_1_1pipeline.html#ab375b0b4e02c7f1a48602c4186fbbbd7": [12, 0, 0, 82, 4],
│ │ │ │ "classpqxx_1_1pipeline.html#ab856bb6e63a3b50a2cead9b730acc79f": [13, 0, 0, 81, 3],
│ │ │ │ "classpqxx_1_1pipeline.html#ab856bb6e63a3b50a2cead9b730acc79f": [12, 0, 0, 82, 3],
│ │ │ │ "classpqxx_1_1pipeline.html#adb318eea9147fb82d67c43a430722283": [12, 0, 0, 82, 8],
│ │ │ │ "classpqxx_1_1pipeline.html#adb318eea9147fb82d67c43a430722283": [13, 0, 0, 81, 8],
│ │ │ │ "classpqxx_1_1pipeline.html#af21cf61fd1c13a6729f48a241cbeba37": [12, 0, 0, 82, 0],
│ │ │ │ "classpqxx_1_1pipeline.html#af21cf61fd1c13a6729f48a241cbeba37": [13, 0, 0, 81, 0],
│ │ │ │ "classpqxx_1_1placeholders.html": [12, 0, 0, 83],
│ │ │ │ "classpqxx_1_1placeholders.html": [13, 0, 0, 82],
│ │ │ │ - "classpqxx_1_1placeholders.html#a254b9519ce26aee58826afcd4dadb778": [12, 0, 0, 83, 0],
│ │ │ │ "classpqxx_1_1placeholders.html#a254b9519ce26aee58826afcd4dadb778": [13, 0, 0, 82, 0],
│ │ │ │ - "classpqxx_1_1placeholders.html#a4bdc5f0c544e544a62af6d2fc2309c58": [12, 0, 0, 83, 1],
│ │ │ │ + "classpqxx_1_1placeholders.html#a254b9519ce26aee58826afcd4dadb778": [12, 0, 0, 83, 0],
│ │ │ │ "classpqxx_1_1placeholders.html#a4bdc5f0c544e544a62af6d2fc2309c58": [13, 0, 0, 82, 1],
│ │ │ │ - "classpqxx_1_1placeholders.html#a92d006575732b3ead81cbaf4892197ae": [13, 0, 0, 82, 3],
│ │ │ │ + "classpqxx_1_1placeholders.html#a4bdc5f0c544e544a62af6d2fc2309c58": [12, 0, 0, 83, 1],
│ │ │ │ "classpqxx_1_1placeholders.html#a92d006575732b3ead81cbaf4892197ae": [12, 0, 0, 83, 3],
│ │ │ │ + "classpqxx_1_1placeholders.html#a92d006575732b3ead81cbaf4892197ae": [13, 0, 0, 82, 3],
│ │ │ │ "classpqxx_1_1placeholders.html#aef09cd2fcb858917f33752a85e063bde": [13, 0, 0, 82, 2],
│ │ │ │ "classpqxx_1_1placeholders.html#aef09cd2fcb858917f33752a85e063bde": [12, 0, 0, 83, 2],
│ │ │ │ - "classpqxx_1_1prepped.html": [13, 0, 0, 87],
│ │ │ │ "classpqxx_1_1prepped.html": [12, 0, 0, 88],
│ │ │ │ - "classpqxx_1_1quiet__errorhandler.html": [12, 0, 0, 90],
│ │ │ │ + "classpqxx_1_1prepped.html": [13, 0, 0, 87],
│ │ │ │ "classpqxx_1_1quiet__errorhandler.html": [13, 0, 0, 89],
│ │ │ │ - "classpqxx_1_1quiet__errorhandler.html#a051f8a9a1019974daffc47c75addc46e": [12, 0, 0, 90, 1],
│ │ │ │ + "classpqxx_1_1quiet__errorhandler.html": [12, 0, 0, 90],
│ │ │ │ "classpqxx_1_1quiet__errorhandler.html#a051f8a9a1019974daffc47c75addc46e": [13, 0, 0, 89, 1],
│ │ │ │ + "classpqxx_1_1quiet__errorhandler.html#a051f8a9a1019974daffc47c75addc46e": [12, 0, 0, 90, 1],
│ │ │ │ "classpqxx_1_1quiet__errorhandler.html#ac89d9cb68e28649ed53ec9d00ad75550": [13, 0, 0, 89, 0],
│ │ │ │ "classpqxx_1_1quiet__errorhandler.html#ac89d9cb68e28649ed53ec9d00ad75550": [12, 0, 0, 90, 0],
│ │ │ │ "classpqxx_1_1range.html": [13, 0, 0, 90],
│ │ │ │ "classpqxx_1_1range.html": [12, 0, 0, 91],
│ │ │ │ - "classpqxx_1_1range.html#a2e0b08f5564191f8c0bdc9fbdb273d62": [12, 0, 0, 91, 6],
│ │ │ │ "classpqxx_1_1range.html#a2e0b08f5564191f8c0bdc9fbdb273d62": [13, 0, 0, 90, 6],
│ │ │ │ + "classpqxx_1_1range.html#a2e0b08f5564191f8c0bdc9fbdb273d62": [12, 0, 0, 91, 6],
│ │ │ │ "classpqxx_1_1range.html#a2fa03d4ad40c545610bdc382e2aff187": [12, 0, 0, 91, 3],
│ │ │ │ "classpqxx_1_1range.html#a2fa03d4ad40c545610bdc382e2aff187": [13, 0, 0, 90, 3],
│ │ │ │ - "classpqxx_1_1range.html#a3f5071556ce9c0b77e6e4a006b6c51fe": [13, 0, 0, 90, 2],
│ │ │ │ "classpqxx_1_1range.html#a3f5071556ce9c0b77e6e4a006b6c51fe": [12, 0, 0, 91, 2],
│ │ │ │ - "classpqxx_1_1range.html#a61aebbd9da9a64135c92d8464e41e09c": [12, 0, 0, 91, 0],
│ │ │ │ + "classpqxx_1_1range.html#a3f5071556ce9c0b77e6e4a006b6c51fe": [13, 0, 0, 90, 2],
│ │ │ │ "classpqxx_1_1range.html#a61aebbd9da9a64135c92d8464e41e09c": [13, 0, 0, 90, 0],
│ │ │ │ + "classpqxx_1_1range.html#a61aebbd9da9a64135c92d8464e41e09c": [12, 0, 0, 91, 0],
│ │ │ │ "classpqxx_1_1range.html#a9fd52675604651358ccc941bcf0c63fc": [13, 0, 0, 90, 5],
│ │ │ │ "classpqxx_1_1range.html#a9fd52675604651358ccc941bcf0c63fc": [12, 0, 0, 91, 5],
│ │ │ │ "classpqxx_1_1range.html#ac91cd0e74ae28042d8f887107f0aef76": [13, 0, 0, 90, 4],
│ │ │ │ "classpqxx_1_1range.html#ac91cd0e74ae28042d8f887107f0aef76": [12, 0, 0, 91, 4],
│ │ │ │ "classpqxx_1_1range.html#af8bf753edbe8b8473a861ffa02af4b9b": [12, 0, 0, 91, 1],
│ │ │ │ "classpqxx_1_1range.html#af8bf753edbe8b8473a861ffa02af4b9b": [13, 0, 0, 90, 1],
│ │ │ │ - "classpqxx_1_1range__bound.html": [13, 0, 0, 91],
│ │ │ │ "classpqxx_1_1range__bound.html": [12, 0, 0, 92],
│ │ │ │ + "classpqxx_1_1range__bound.html": [13, 0, 0, 91],
│ │ │ │ "classpqxx_1_1range__bound.html#a0854916d7bbd20f2018a6a88f6852a91": [12, 0, 0, 92, 1],
│ │ │ │ "classpqxx_1_1range__bound.html#a0854916d7bbd20f2018a6a88f6852a91": [13, 0, 0, 91, 1],
│ │ │ │ - "classpqxx_1_1range__bound.html#a5e36faad60586213187bbe1735f00c5b": [12, 0, 0, 92, 2],
│ │ │ │ "classpqxx_1_1range__bound.html#a5e36faad60586213187bbe1735f00c5b": [13, 0, 0, 91, 2],
│ │ │ │ - "classpqxx_1_1range__bound.html#a62434321bfbc5f66bf3921ea2fb31274": [12, 0, 0, 92, 4],
│ │ │ │ + "classpqxx_1_1range__bound.html#a5e36faad60586213187bbe1735f00c5b": [12, 0, 0, 92, 2],
│ │ │ │ "classpqxx_1_1range__bound.html#a62434321bfbc5f66bf3921ea2fb31274": [13, 0, 0, 91, 4],
│ │ │ │ - "classpqxx_1_1range__bound.html#a76d25b17ed6af78070b888f5effe70ba": [13, 0, 0, 91, 5],
│ │ │ │ + "classpqxx_1_1range__bound.html#a62434321bfbc5f66bf3921ea2fb31274": [12, 0, 0, 92, 4],
│ │ │ │ "classpqxx_1_1range__bound.html#a76d25b17ed6af78070b888f5effe70ba": [12, 0, 0, 92, 5],
│ │ │ │ - "classpqxx_1_1range__bound.html#a806f0f1a87561914eaf445e5159d891a": [13, 0, 0, 91, 0],
│ │ │ │ + "classpqxx_1_1range__bound.html#a76d25b17ed6af78070b888f5effe70ba": [13, 0, 0, 91, 5],
│ │ │ │ "classpqxx_1_1range__bound.html#a806f0f1a87561914eaf445e5159d891a": [12, 0, 0, 92, 0],
│ │ │ │ + "classpqxx_1_1range__bound.html#a806f0f1a87561914eaf445e5159d891a": [13, 0, 0, 91, 0],
│ │ │ │ "classpqxx_1_1range__bound.html#abe993384f178fe7ac1143e88a3dbcaeb": [12, 0, 0, 92, 3],
│ │ │ │ "classpqxx_1_1range__bound.html#abe993384f178fe7ac1143e88a3dbcaeb": [13, 0, 0, 91, 3],
│ │ │ │ - "classpqxx_1_1result.html": [13, 0, 0, 94],
│ │ │ │ "classpqxx_1_1result.html": [12, 0, 0, 95],
│ │ │ │ + "classpqxx_1_1result.html": [13, 0, 0, 94],
│ │ │ │ "classpqxx_1_1result.html#a0144c5047e9e17cea00ca1c025a5ebcd": [12, 0, 0, 95, 7],
│ │ │ │ "classpqxx_1_1result.html#a0144c5047e9e17cea00ca1c025a5ebcd": [13, 0, 0, 94, 7],
│ │ │ │ - "classpqxx_1_1result.html#a05854a0b68f2a8d3d2e93310ad51c639": [13, 0, 0, 94, 12],
│ │ │ │ "classpqxx_1_1result.html#a05854a0b68f2a8d3d2e93310ad51c639": [12, 0, 0, 95, 12],
│ │ │ │ - "classpqxx_1_1result.html#a0c06b4a276d79960cfdbbfb1be070b48": [12, 0, 0, 95, 20],
│ │ │ │ + "classpqxx_1_1result.html#a05854a0b68f2a8d3d2e93310ad51c639": [13, 0, 0, 94, 12],
│ │ │ │ "classpqxx_1_1result.html#a0c06b4a276d79960cfdbbfb1be070b48": [13, 0, 0, 94, 20],
│ │ │ │ - "classpqxx_1_1result.html#a22161b4bebb52ef85a51509302b5a8a9": [12, 0, 0, 95, 30],
│ │ │ │ + "classpqxx_1_1result.html#a0c06b4a276d79960cfdbbfb1be070b48": [12, 0, 0, 95, 20],
│ │ │ │ "classpqxx_1_1result.html#a22161b4bebb52ef85a51509302b5a8a9": [13, 0, 0, 94, 30],
│ │ │ │ + "classpqxx_1_1result.html#a22161b4bebb52ef85a51509302b5a8a9": [12, 0, 0, 95, 30],
│ │ │ │ "classpqxx_1_1result.html#a2caa168a1984a277b29d70ccbbdf50c4": [12, 0, 0, 95, 19],
│ │ │ │ "classpqxx_1_1result.html#a2caa168a1984a277b29d70ccbbdf50c4": [13, 0, 0, 94, 19],
│ │ │ │ - "classpqxx_1_1result.html#a399cde6713d4b415e229d67bfba4eccd": [12, 0, 0, 95, 22],
│ │ │ │ "classpqxx_1_1result.html#a399cde6713d4b415e229d67bfba4eccd": [13, 0, 0, 94, 22],
│ │ │ │ - "classpqxx_1_1result.html#a40cf4ed9f2a6ac1004bb79ea3ea8ba89": [12, 0, 0, 95, 6],
│ │ │ │ + "classpqxx_1_1result.html#a399cde6713d4b415e229d67bfba4eccd": [12, 0, 0, 95, 22],
│ │ │ │ "classpqxx_1_1result.html#a40cf4ed9f2a6ac1004bb79ea3ea8ba89": [13, 0, 0, 94, 6],
│ │ │ │ + "classpqxx_1_1result.html#a40cf4ed9f2a6ac1004bb79ea3ea8ba89": [12, 0, 0, 95, 6],
│ │ │ │ "classpqxx_1_1result.html#a47fef290e0e6db165a4d73b52874fd1c": [12, 0, 0, 95, 24],
│ │ │ │ "classpqxx_1_1result.html#a47fef290e0e6db165a4d73b52874fd1c": [13, 0, 0, 94, 24],
│ │ │ │ "classpqxx_1_1result.html#a4e047a3746e1e9f37efd0cedfc4a891b": [12, 0, 0, 95, 21],
│ │ │ │ "classpqxx_1_1result.html#a4e047a3746e1e9f37efd0cedfc4a891b": [13, 0, 0, 94, 21],
│ │ │ │ "classpqxx_1_1result.html#a501bfb79335ea4c51bc55f9c0aa6c75f": [12, 0, 0, 95, 25],
│ │ │ │ "classpqxx_1_1result.html#a501bfb79335ea4c51bc55f9c0aa6c75f": [13, 0, 0, 94, 25],
│ │ │ │ "classpqxx_1_1result.html#a5094a7be5f02f0f4c641fbd5ccb1a4da": [12, 0, 0, 95, 16],
│ │ │ │ "classpqxx_1_1result.html#a5094a7be5f02f0f4c641fbd5ccb1a4da": [13, 0, 0, 94, 16],
│ │ │ │ "classpqxx_1_1result.html#a509d72c494b149d6b3e7277b1a641c34": [13, 0, 0, 94, 14],
│ │ │ │ "classpqxx_1_1result.html#a509d72c494b149d6b3e7277b1a641c34": [12, 0, 0, 95, 14],
│ │ │ │ "classpqxx_1_1result.html#a5d0d4d8714ea814f1d80d11578976098": [12, 0, 0, 95, 26],
│ │ │ │ "classpqxx_1_1result.html#a5d0d4d8714ea814f1d80d11578976098": [13, 0, 0, 94, 26],
│ │ │ │ "classpqxx_1_1result.html#a60340a6e20a3b018a296c2e42528198d": [12, 0, 0, 95, 3],
│ │ │ │ "classpqxx_1_1result.html#a60340a6e20a3b018a296c2e42528198d": [13, 0, 0, 94, 3],
│ │ │ │ - "classpqxx_1_1result.html#a62fb88e9b4832537309eae2a97a0805c": [12, 0, 0, 95, 2],
│ │ │ │ "classpqxx_1_1result.html#a62fb88e9b4832537309eae2a97a0805c": [13, 0, 0, 94, 2],
│ │ │ │ + "classpqxx_1_1result.html#a62fb88e9b4832537309eae2a97a0805c": [12, 0, 0, 95, 2],
│ │ │ │ "classpqxx_1_1result.html#a7752ffdad59cb03bb58cd3cb4d056ab6": [13, 0, 0, 94, 1],
│ │ │ │ "classpqxx_1_1result.html#a7752ffdad59cb03bb58cd3cb4d056ab6": [12, 0, 0, 95, 1],
│ │ │ │ - "classpqxx_1_1result.html#a7d16111aa06ba636ea3e7b4d90c7465b": [13, 0, 0, 94, 10],
│ │ │ │ "classpqxx_1_1result.html#a7d16111aa06ba636ea3e7b4d90c7465b": [12, 0, 0, 95, 10],
│ │ │ │ - "classpqxx_1_1result.html#a82b0f360dc1be25306ee58b27856457f": [13, 0, 0, 94, 5],
│ │ │ │ + "classpqxx_1_1result.html#a7d16111aa06ba636ea3e7b4d90c7465b": [13, 0, 0, 94, 10],
│ │ │ │ "classpqxx_1_1result.html#a82b0f360dc1be25306ee58b27856457f": [12, 0, 0, 95, 5],
│ │ │ │ - "classpqxx_1_1result.html#a863d43ecc8773aac3a6204be4c37fb6d": [13, 0, 0, 94, 9],
│ │ │ │ + "classpqxx_1_1result.html#a82b0f360dc1be25306ee58b27856457f": [13, 0, 0, 94, 5],
│ │ │ │ "classpqxx_1_1result.html#a863d43ecc8773aac3a6204be4c37fb6d": [12, 0, 0, 95, 9],
│ │ │ │ + "classpqxx_1_1result.html#a863d43ecc8773aac3a6204be4c37fb6d": [13, 0, 0, 94, 9],
│ │ │ │ "classpqxx_1_1result.html#a9302f9b61826f8b7b213f13b30453c0b": [13, 0, 0, 94, 15],
│ │ │ │ "classpqxx_1_1result.html#a9302f9b61826f8b7b213f13b30453c0b": [12, 0, 0, 95, 15],
│ │ │ │ - "classpqxx_1_1result.html#a9d28f84628b9e8a8fecf7849f31bf1a0": [12, 0, 0, 95, 27],
│ │ │ │ "classpqxx_1_1result.html#a9d28f84628b9e8a8fecf7849f31bf1a0": [13, 0, 0, 94, 27],
│ │ │ │ - "classpqxx_1_1result.html#aa50b250a5081a0366f79bff9757adf27": [13, 0, 0, 94, 13],
│ │ │ │ + "classpqxx_1_1result.html#a9d28f84628b9e8a8fecf7849f31bf1a0": [12, 0, 0, 95, 27],
│ │ │ │ "classpqxx_1_1result.html#aa50b250a5081a0366f79bff9757adf27": [12, 0, 0, 95, 13],
│ │ │ │ + "classpqxx_1_1result.html#aa50b250a5081a0366f79bff9757adf27": [13, 0, 0, 94, 13],
│ │ │ │ "classpqxx_1_1result.html#ad0f48c5bc316a6402153c743168d9819": [12, 0, 0, 95, 8],
│ │ │ │ "classpqxx_1_1result.html#ad0f48c5bc316a6402153c743168d9819": [13, 0, 0, 94, 8],
│ │ │ │ "classpqxx_1_1result.html#ad1d929a8c555ef0e4e84d4dbcf56c05e": [13, 0, 0, 94, 28],
│ │ │ │ "classpqxx_1_1result.html#ad1d929a8c555ef0e4e84d4dbcf56c05e": [12, 0, 0, 95, 28],
│ │ │ │ - "classpqxx_1_1result.html#ada6d82fe35f72cb45623fba4f8066279": [13, 0, 0, 94, 23],
│ │ │ │ "classpqxx_1_1result.html#ada6d82fe35f72cb45623fba4f8066279": [12, 0, 0, 95, 23],
│ │ │ │ - "classpqxx_1_1result.html#ade8cdc5728f64d00f45073b8d6264778": [13, 0, 0, 94, 11],
│ │ │ │ + "classpqxx_1_1result.html#ada6d82fe35f72cb45623fba4f8066279": [13, 0, 0, 94, 23],
│ │ │ │ "classpqxx_1_1result.html#ade8cdc5728f64d00f45073b8d6264778": [12, 0, 0, 95, 11],
│ │ │ │ - "classpqxx_1_1result.html#ae65c4fb3934978bba367ab61811aabec": [12, 0, 0, 95, 29],
│ │ │ │ + "classpqxx_1_1result.html#ade8cdc5728f64d00f45073b8d6264778": [13, 0, 0, 94, 11],
│ │ │ │ "classpqxx_1_1result.html#ae65c4fb3934978bba367ab61811aabec": [13, 0, 0, 94, 29],
│ │ │ │ + "classpqxx_1_1result.html#ae65c4fb3934978bba367ab61811aabec": [12, 0, 0, 95, 29],
│ │ │ │ "classpqxx_1_1result.html#aeafa3e659d940f7e2b95d92b856e1261": [12, 0, 0, 95, 4],
│ │ │ │ "classpqxx_1_1result.html#aeafa3e659d940f7e2b95d92b856e1261": [13, 0, 0, 94, 4],
│ │ │ │ - "classpqxx_1_1result.html#aee29dae44071175c8c6dd4a046a060c5": [13, 0, 0, 94, 18],
│ │ │ │ - "classpqxx_1_1result.html#aee29dae44071175c8c6dd4a046a060c5": [12, 0, 0, 95, 18]
│ │ │ │ + "classpqxx_1_1result.html#aee29dae44071175c8c6dd4a046a060c5": [12, 0, 0, 95, 18],
│ │ │ │ + "classpqxx_1_1result.html#aee29dae44071175c8c6dd4a046a060c5": [13, 0, 0, 94, 18]
│ │ │ │ };
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreeindex3.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -1,144 +1,144 @@
│ │ │ │ var NAVTREEINDEX3 = {
│ │ │ │ "classpqxx_1_1result.html#af73d036566ef69618f8b22ba9a220a2e": [12, 0, 0, 95, 0],
│ │ │ │ "classpqxx_1_1result.html#af73d036566ef69618f8b22ba9a220a2e": [13, 0, 0, 94, 0],
│ │ │ │ - "classpqxx_1_1result.html#afb672c73ca193aaf2fc5ba4d5c8a96f8": [13, 0, 0, 94, 17],
│ │ │ │ "classpqxx_1_1result.html#afb672c73ca193aaf2fc5ba4d5c8a96f8": [12, 0, 0, 95, 17],
│ │ │ │ + "classpqxx_1_1result.html#afb672c73ca193aaf2fc5ba4d5c8a96f8": [13, 0, 0, 94, 17],
│ │ │ │ "classpqxx_1_1row.html": [12, 0, 0, 96],
│ │ │ │ "classpqxx_1_1row.html": [13, 0, 0, 95],
│ │ │ │ "classpqxx_1_1row.html#a05994def0b6c7b426bb13a7a95e9e035": [13, 0, 0, 95, 11],
│ │ │ │ "classpqxx_1_1row.html#a05994def0b6c7b426bb13a7a95e9e035": [12, 0, 0, 96, 11],
│ │ │ │ "classpqxx_1_1row.html#a0a090abf27d652b8691fffba07fd3bd6": [13, 0, 0, 95, 1],
│ │ │ │ "classpqxx_1_1row.html#a0a090abf27d652b8691fffba07fd3bd6": [12, 0, 0, 96, 1],
│ │ │ │ "classpqxx_1_1row.html#a0cc2133611f007e7390988f6110245c8": [12, 0, 0, 96, 15],
│ │ │ │ "classpqxx_1_1row.html#a0cc2133611f007e7390988f6110245c8": [13, 0, 0, 95, 15],
│ │ │ │ - "classpqxx_1_1row.html#a0ec7d11b9721ab7bb54ec5df113ab8f5": [12, 0, 0, 96, 19],
│ │ │ │ "classpqxx_1_1row.html#a0ec7d11b9721ab7bb54ec5df113ab8f5": [13, 0, 0, 95, 19],
│ │ │ │ - "classpqxx_1_1row.html#a20640aad643b5309242056662ca06f98": [13, 0, 0, 95, 3],
│ │ │ │ + "classpqxx_1_1row.html#a0ec7d11b9721ab7bb54ec5df113ab8f5": [12, 0, 0, 96, 19],
│ │ │ │ "classpqxx_1_1row.html#a20640aad643b5309242056662ca06f98": [12, 0, 0, 96, 3],
│ │ │ │ - "classpqxx_1_1row.html#a2cbbf217862683b5ce98bcd03e07d859": [13, 0, 0, 95, 8],
│ │ │ │ + "classpqxx_1_1row.html#a20640aad643b5309242056662ca06f98": [13, 0, 0, 95, 3],
│ │ │ │ "classpqxx_1_1row.html#a2cbbf217862683b5ce98bcd03e07d859": [12, 0, 0, 96, 8],
│ │ │ │ - "classpqxx_1_1row.html#a2dd6b180a8354569984d81120cb0d765": [12, 0, 0, 96, 6],
│ │ │ │ + "classpqxx_1_1row.html#a2cbbf217862683b5ce98bcd03e07d859": [13, 0, 0, 95, 8],
│ │ │ │ "classpqxx_1_1row.html#a2dd6b180a8354569984d81120cb0d765": [13, 0, 0, 95, 6],
│ │ │ │ + "classpqxx_1_1row.html#a2dd6b180a8354569984d81120cb0d765": [12, 0, 0, 96, 6],
│ │ │ │ "classpqxx_1_1row.html#a4195a594e4f11829637820cd89e39c7b": [13, 0, 0, 95, 14],
│ │ │ │ "classpqxx_1_1row.html#a4195a594e4f11829637820cd89e39c7b": [12, 0, 0, 96, 14],
│ │ │ │ "classpqxx_1_1row.html#a454cb5eda2dad962c8370e77b35d6341": [12, 0, 0, 96, 9],
│ │ │ │ "classpqxx_1_1row.html#a454cb5eda2dad962c8370e77b35d6341": [13, 0, 0, 95, 9],
│ │ │ │ - "classpqxx_1_1row.html#a5bd8864f453d45f83984ed858fb68880": [13, 0, 0, 95, 0],
│ │ │ │ "classpqxx_1_1row.html#a5bd8864f453d45f83984ed858fb68880": [12, 0, 0, 96, 0],
│ │ │ │ + "classpqxx_1_1row.html#a5bd8864f453d45f83984ed858fb68880": [13, 0, 0, 95, 0],
│ │ │ │ "classpqxx_1_1row.html#a7e8c1276fe6f0b7bb82d3d40b98e1633": [13, 0, 0, 95, 5],
│ │ │ │ "classpqxx_1_1row.html#a7e8c1276fe6f0b7bb82d3d40b98e1633": [12, 0, 0, 96, 5],
│ │ │ │ - "classpqxx_1_1row.html#a83a21b69ee9c581fc449d24dc33d8e65": [13, 0, 0, 95, 21],
│ │ │ │ "classpqxx_1_1row.html#a83a21b69ee9c581fc449d24dc33d8e65": [12, 0, 0, 96, 21],
│ │ │ │ - "classpqxx_1_1row.html#a859f508b95f424531247427189a529ef": [12, 0, 0, 96, 20],
│ │ │ │ + "classpqxx_1_1row.html#a83a21b69ee9c581fc449d24dc33d8e65": [13, 0, 0, 95, 21],
│ │ │ │ "classpqxx_1_1row.html#a859f508b95f424531247427189a529ef": [13, 0, 0, 95, 20],
│ │ │ │ + "classpqxx_1_1row.html#a859f508b95f424531247427189a529ef": [12, 0, 0, 96, 20],
│ │ │ │ "classpqxx_1_1row.html#aadd30c2141060d954c16301e3711a02c": [12, 0, 0, 96, 13],
│ │ │ │ "classpqxx_1_1row.html#aadd30c2141060d954c16301e3711a02c": [13, 0, 0, 95, 13],
│ │ │ │ "classpqxx_1_1row.html#ab687d68a5d610e08ab637c956fa8b134": [13, 0, 0, 95, 2],
│ │ │ │ "classpqxx_1_1row.html#ab687d68a5d610e08ab637c956fa8b134": [12, 0, 0, 96, 2],
│ │ │ │ - "classpqxx_1_1row.html#ac478a252d2bac75e1fe0d65fd99f9042": [13, 0, 0, 95, 17],
│ │ │ │ "classpqxx_1_1row.html#ac478a252d2bac75e1fe0d65fd99f9042": [12, 0, 0, 96, 17],
│ │ │ │ + "classpqxx_1_1row.html#ac478a252d2bac75e1fe0d65fd99f9042": [13, 0, 0, 95, 17],
│ │ │ │ "classpqxx_1_1row.html#ad786992d33d385865dbae17980345704": [13, 0, 0, 95, 4],
│ │ │ │ "classpqxx_1_1row.html#ad786992d33d385865dbae17980345704": [12, 0, 0, 96, 4],
│ │ │ │ "classpqxx_1_1row.html#add6bd3b28ccb8178a072e8d3d19b9616": [12, 0, 0, 96, 16],
│ │ │ │ "classpqxx_1_1row.html#add6bd3b28ccb8178a072e8d3d19b9616": [13, 0, 0, 95, 16],
│ │ │ │ - "classpqxx_1_1row.html#aee26781d8c0000bdc1d80c1624b17c81": [13, 0, 0, 95, 12],
│ │ │ │ "classpqxx_1_1row.html#aee26781d8c0000bdc1d80c1624b17c81": [12, 0, 0, 96, 12],
│ │ │ │ - "classpqxx_1_1row.html#af81dc44f173ab151bd052f339c10521f": [12, 0, 0, 96, 10],
│ │ │ │ + "classpqxx_1_1row.html#aee26781d8c0000bdc1d80c1624b17c81": [13, 0, 0, 95, 12],
│ │ │ │ "classpqxx_1_1row.html#af81dc44f173ab151bd052f339c10521f": [13, 0, 0, 95, 10],
│ │ │ │ - "classpqxx_1_1row.html#afa096ead6281d8bc4fab569f8bb7f70b": [13, 0, 0, 95, 18],
│ │ │ │ + "classpqxx_1_1row.html#af81dc44f173ab151bd052f339c10521f": [12, 0, 0, 96, 10],
│ │ │ │ "classpqxx_1_1row.html#afa096ead6281d8bc4fab569f8bb7f70b": [12, 0, 0, 96, 18],
│ │ │ │ - "classpqxx_1_1row.html#afd145c4dc286f09a65e81b26ac43a565": [13, 0, 0, 95, 7],
│ │ │ │ + "classpqxx_1_1row.html#afa096ead6281d8bc4fab569f8bb7f70b": [13, 0, 0, 95, 18],
│ │ │ │ "classpqxx_1_1row.html#afd145c4dc286f09a65e81b26ac43a565": [12, 0, 0, 96, 7],
│ │ │ │ - "classpqxx_1_1stateless__cursor.html": [13, 0, 0, 98],
│ │ │ │ + "classpqxx_1_1row.html#afd145c4dc286f09a65e81b26ac43a565": [13, 0, 0, 95, 7],
│ │ │ │ "classpqxx_1_1stateless__cursor.html": [12, 0, 0, 99],
│ │ │ │ + "classpqxx_1_1stateless__cursor.html": [13, 0, 0, 98],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#a0be6e4435c96296ab1f91f4769235dae": [13, 0, 0, 98, 3],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#a0be6e4435c96296ab1f91f4769235dae": [12, 0, 0, 99, 3],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#a333403f9410c09e299d87cc6f06738d0": [13, 0, 0, 98, 2],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#a333403f9410c09e299d87cc6f06738d0": [12, 0, 0, 99, 2],
│ │ │ │ - "classpqxx_1_1stateless__cursor.html#a97046479f709ae621473c48ed7a0932d": [13, 0, 0, 98, 4],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#a97046479f709ae621473c48ed7a0932d": [12, 0, 0, 99, 4],
│ │ │ │ + "classpqxx_1_1stateless__cursor.html#a97046479f709ae621473c48ed7a0932d": [13, 0, 0, 98, 4],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#ad77d68832afb8572fd976fc816bec89a": [13, 0, 0, 98, 0],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#ad77d68832afb8572fd976fc816bec89a": [12, 0, 0, 99, 0],
│ │ │ │ - "classpqxx_1_1stateless__cursor.html#ae278f24bab98d3946061934a48992067": [13, 0, 0, 98, 5],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#ae278f24bab98d3946061934a48992067": [12, 0, 0, 99, 5],
│ │ │ │ - "classpqxx_1_1stateless__cursor.html#afe5492d726a1765647985874d17f4149": [12, 0, 0, 99, 1],
│ │ │ │ + "classpqxx_1_1stateless__cursor.html#ae278f24bab98d3946061934a48992067": [13, 0, 0, 98, 5],
│ │ │ │ "classpqxx_1_1stateless__cursor.html#afe5492d726a1765647985874d17f4149": [13, 0, 0, 98, 1],
│ │ │ │ + "classpqxx_1_1stateless__cursor.html#afe5492d726a1765647985874d17f4149": [12, 0, 0, 99, 1],
│ │ │ │ "classpqxx_1_1stream__from.html": [12, 0, 0, 101],
│ │ │ │ "classpqxx_1_1stream__from.html": [13, 0, 0, 100],
│ │ │ │ "classpqxx_1_1stream__from.html#a049c94dcc710918f0b5c7416b638aefa": [12, 0, 0, 101, 10],
│ │ │ │ "classpqxx_1_1stream__from.html#a049c94dcc710918f0b5c7416b638aefa": [13, 0, 0, 100, 10],
│ │ │ │ "classpqxx_1_1stream__from.html#a0ea468c0d02f2a2c9c2c7ff41dbece3c": [12, 0, 0, 101, 12],
│ │ │ │ "classpqxx_1_1stream__from.html#a0ea468c0d02f2a2c9c2c7ff41dbece3c": [13, 0, 0, 100, 12],
│ │ │ │ - "classpqxx_1_1stream__from.html#a0f32402331d7f2b8ed73419f1eed22ba": [12, 0, 0, 101, 2],
│ │ │ │ "classpqxx_1_1stream__from.html#a0f32402331d7f2b8ed73419f1eed22ba": [13, 0, 0, 100, 2],
│ │ │ │ - "classpqxx_1_1stream__from.html#a11a6e30a28260f10fa9bfbd6f7ea36c4": [13, 0, 0, 100, 0],
│ │ │ │ + "classpqxx_1_1stream__from.html#a0f32402331d7f2b8ed73419f1eed22ba": [12, 0, 0, 101, 2],
│ │ │ │ "classpqxx_1_1stream__from.html#a11a6e30a28260f10fa9bfbd6f7ea36c4": [12, 0, 0, 101, 0],
│ │ │ │ - "classpqxx_1_1stream__from.html#a3694734ee04887d48fa799ab717787dd": [13, 0, 0, 100, 13],
│ │ │ │ + "classpqxx_1_1stream__from.html#a11a6e30a28260f10fa9bfbd6f7ea36c4": [13, 0, 0, 100, 0],
│ │ │ │ "classpqxx_1_1stream__from.html#a3694734ee04887d48fa799ab717787dd": [12, 0, 0, 101, 13],
│ │ │ │ + "classpqxx_1_1stream__from.html#a3694734ee04887d48fa799ab717787dd": [13, 0, 0, 100, 13],
│ │ │ │ "classpqxx_1_1stream__from.html#a38b17b7198ed153d01e42d5873cdf070": [13, 0, 0, 100, 5],
│ │ │ │ "classpqxx_1_1stream__from.html#a38b17b7198ed153d01e42d5873cdf070": [12, 0, 0, 101, 5],
│ │ │ │ "classpqxx_1_1stream__from.html#a3c4cd42c50e3e90282ea5570ddb19e70": [13, 0, 0, 100, 1],
│ │ │ │ "classpqxx_1_1stream__from.html#a3c4cd42c50e3e90282ea5570ddb19e70": [12, 0, 0, 101, 1],
│ │ │ │ - "classpqxx_1_1stream__from.html#a4720bea2f8cbff6d5e1d37f22dbc8a6d": [12, 0, 0, 101, 7],
│ │ │ │ "classpqxx_1_1stream__from.html#a4720bea2f8cbff6d5e1d37f22dbc8a6d": [13, 0, 0, 100, 7],
│ │ │ │ - "classpqxx_1_1stream__from.html#a6afe5f8cdb8f158b46fa9c616c7864bf": [12, 0, 0, 101, 6],
│ │ │ │ + "classpqxx_1_1stream__from.html#a4720bea2f8cbff6d5e1d37f22dbc8a6d": [12, 0, 0, 101, 7],
│ │ │ │ "classpqxx_1_1stream__from.html#a6afe5f8cdb8f158b46fa9c616c7864bf": [13, 0, 0, 100, 6],
│ │ │ │ - "classpqxx_1_1stream__from.html#a6ce910e623631b49df45fff857d54d15": [12, 0, 0, 101, 8],
│ │ │ │ + "classpqxx_1_1stream__from.html#a6afe5f8cdb8f158b46fa9c616c7864bf": [12, 0, 0, 101, 6],
│ │ │ │ "classpqxx_1_1stream__from.html#a6ce910e623631b49df45fff857d54d15": [13, 0, 0, 100, 8],
│ │ │ │ + "classpqxx_1_1stream__from.html#a6ce910e623631b49df45fff857d54d15": [12, 0, 0, 101, 8],
│ │ │ │ "classpqxx_1_1stream__from.html#a832fe2b217cf7e1a5496d35f75dcd15c": [12, 0, 0, 101, 3],
│ │ │ │ "classpqxx_1_1stream__from.html#a832fe2b217cf7e1a5496d35f75dcd15c": [13, 0, 0, 100, 3],
│ │ │ │ - "classpqxx_1_1stream__from.html#abcfe96b18d9e2c4177799248fe143807": [12, 0, 0, 101, 4],
│ │ │ │ "classpqxx_1_1stream__from.html#abcfe96b18d9e2c4177799248fe143807": [13, 0, 0, 100, 4],
│ │ │ │ - "classpqxx_1_1stream__from.html#acb595a8190351f2a8b594518351c40f3": [12, 0, 0, 101, 9],
│ │ │ │ + "classpqxx_1_1stream__from.html#abcfe96b18d9e2c4177799248fe143807": [12, 0, 0, 101, 4],
│ │ │ │ "classpqxx_1_1stream__from.html#acb595a8190351f2a8b594518351c40f3": [13, 0, 0, 100, 9],
│ │ │ │ - "classpqxx_1_1stream__from.html#aee20a5dfaefcf142ee64d5777ebaa744": [13, 0, 0, 100, 14],
│ │ │ │ + "classpqxx_1_1stream__from.html#acb595a8190351f2a8b594518351c40f3": [12, 0, 0, 101, 9],
│ │ │ │ "classpqxx_1_1stream__from.html#aee20a5dfaefcf142ee64d5777ebaa744": [12, 0, 0, 101, 14],
│ │ │ │ + "classpqxx_1_1stream__from.html#aee20a5dfaefcf142ee64d5777ebaa744": [13, 0, 0, 100, 14],
│ │ │ │ "classpqxx_1_1stream__from.html#afdb9ffc4e6baa48bd6f2169cba7020d0": [13, 0, 0, 100, 11],
│ │ │ │ "classpqxx_1_1stream__from.html#afdb9ffc4e6baa48bd6f2169cba7020d0": [12, 0, 0, 101, 11],
│ │ │ │ "classpqxx_1_1stream__to.html": [13, 0, 0, 102],
│ │ │ │ "classpqxx_1_1stream__to.html": [12, 0, 0, 103],
│ │ │ │ - "classpqxx_1_1stream__to.html#a12b525e57012cb5c2ba3481c959af914": [12, 0, 0, 103, 4],
│ │ │ │ "classpqxx_1_1stream__to.html#a12b525e57012cb5c2ba3481c959af914": [13, 0, 0, 102, 4],
│ │ │ │ - "classpqxx_1_1stream__to.html#a3491f56118589adff7b7fc214689ad67": [13, 0, 0, 102, 1],
│ │ │ │ + "classpqxx_1_1stream__to.html#a12b525e57012cb5c2ba3481c959af914": [12, 0, 0, 103, 4],
│ │ │ │ "classpqxx_1_1stream__to.html#a3491f56118589adff7b7fc214689ad67": [12, 0, 0, 103, 1],
│ │ │ │ + "classpqxx_1_1stream__to.html#a3491f56118589adff7b7fc214689ad67": [13, 0, 0, 102, 1],
│ │ │ │ "classpqxx_1_1stream__to.html#a41ffa59e4f36803f1e9473ed83b3c41d": [12, 0, 0, 103, 8],
│ │ │ │ "classpqxx_1_1stream__to.html#a41ffa59e4f36803f1e9473ed83b3c41d": [13, 0, 0, 102, 8],
│ │ │ │ - "classpqxx_1_1stream__to.html#a46f5520a97cc4eecbc75e4fbbfc2e9e3": [12, 0, 0, 103, 3],
│ │ │ │ "classpqxx_1_1stream__to.html#a46f5520a97cc4eecbc75e4fbbfc2e9e3": [13, 0, 0, 102, 3],
│ │ │ │ - "classpqxx_1_1stream__to.html#a6284b8a32d0841436e1761b449287788": [13, 0, 0, 102, 2],
│ │ │ │ + "classpqxx_1_1stream__to.html#a46f5520a97cc4eecbc75e4fbbfc2e9e3": [12, 0, 0, 103, 3],
│ │ │ │ "classpqxx_1_1stream__to.html#a6284b8a32d0841436e1761b449287788": [12, 0, 0, 103, 2],
│ │ │ │ - "classpqxx_1_1stream__to.html#a726187a18a93a4c5cc2343bcb9e97da8": [13, 0, 0, 102, 0],
│ │ │ │ + "classpqxx_1_1stream__to.html#a6284b8a32d0841436e1761b449287788": [13, 0, 0, 102, 2],
│ │ │ │ "classpqxx_1_1stream__to.html#a726187a18a93a4c5cc2343bcb9e97da8": [12, 0, 0, 103, 0],
│ │ │ │ - "classpqxx_1_1stream__to.html#aa42e3e2ce5942b5d106356fe196a00a0": [12, 0, 0, 103, 6],
│ │ │ │ + "classpqxx_1_1stream__to.html#a726187a18a93a4c5cc2343bcb9e97da8": [13, 0, 0, 102, 0],
│ │ │ │ "classpqxx_1_1stream__to.html#aa42e3e2ce5942b5d106356fe196a00a0": [13, 0, 0, 102, 6],
│ │ │ │ - "classpqxx_1_1stream__to.html#ac25d66567d17ddd648abe02c4583d981": [13, 0, 0, 102, 5],
│ │ │ │ + "classpqxx_1_1stream__to.html#aa42e3e2ce5942b5d106356fe196a00a0": [12, 0, 0, 103, 6],
│ │ │ │ "classpqxx_1_1stream__to.html#ac25d66567d17ddd648abe02c4583d981": [12, 0, 0, 103, 5],
│ │ │ │ + "classpqxx_1_1stream__to.html#ac25d66567d17ddd648abe02c4583d981": [13, 0, 0, 102, 5],
│ │ │ │ "classpqxx_1_1stream__to.html#ae628c71679b4ec6ebb4378b487e4f543": [12, 0, 0, 103, 7],
│ │ │ │ "classpqxx_1_1stream__to.html#ae628c71679b4ec6ebb4378b487e4f543": [13, 0, 0, 102, 7],
│ │ │ │ - "classpqxx_1_1transaction__focus.html": [13, 0, 0, 146],
│ │ │ │ "classpqxx_1_1transaction__focus.html": [12, 0, 0, 147],
│ │ │ │ + "classpqxx_1_1transaction__focus.html": [13, 0, 0, 146],
│ │ │ │ "classpqxx_1_1transaction__focus.html#a4ccffff2688e9e7757acc385be1d781c": [13, 0, 0, 146, 1],
│ │ │ │ "classpqxx_1_1transaction__focus.html#a4ccffff2688e9e7757acc385be1d781c": [12, 0, 0, 147, 1],
│ │ │ │ - "classpqxx_1_1transaction__focus.html#a4f6084553fd1dfe95cc5432675bf9395": [13, 0, 0, 146, 0],
│ │ │ │ "classpqxx_1_1transaction__focus.html#a4f6084553fd1dfe95cc5432675bf9395": [12, 0, 0, 147, 0],
│ │ │ │ - "classpqxx_1_1zview.html": [13, 0, 0, 156],
│ │ │ │ + "classpqxx_1_1transaction__focus.html#a4f6084553fd1dfe95cc5432675bf9395": [13, 0, 0, 146, 0],
│ │ │ │ "classpqxx_1_1zview.html": [12, 0, 0, 157],
│ │ │ │ - "classpqxx_1_1zview.html#a19fb305262e043452bd898774d6c277f": [13, 0, 0, 156, 6],
│ │ │ │ + "classpqxx_1_1zview.html": [13, 0, 0, 156],
│ │ │ │ "classpqxx_1_1zview.html#a19fb305262e043452bd898774d6c277f": [12, 0, 0, 157, 6],
│ │ │ │ - "classpqxx_1_1zview.html#a3306a96bedcda83725687e6e9757b586": [12, 0, 0, 157, 7],
│ │ │ │ + "classpqxx_1_1zview.html#a19fb305262e043452bd898774d6c277f": [13, 0, 0, 156, 6],
│ │ │ │ "classpqxx_1_1zview.html#a3306a96bedcda83725687e6e9757b586": [13, 0, 0, 156, 7],
│ │ │ │ - "classpqxx_1_1zview.html#a3ddf4e0ff127e96f8f68361088f96d2e": [12, 0, 0, 157, 3],
│ │ │ │ + "classpqxx_1_1zview.html#a3306a96bedcda83725687e6e9757b586": [12, 0, 0, 157, 7],
│ │ │ │ "classpqxx_1_1zview.html#a3ddf4e0ff127e96f8f68361088f96d2e": [13, 0, 0, 156, 3],
│ │ │ │ - "classpqxx_1_1zview.html#a581b8c75e8c2c0de579debfca37cd725": [13, 0, 0, 156, 1],
│ │ │ │ + "classpqxx_1_1zview.html#a3ddf4e0ff127e96f8f68361088f96d2e": [12, 0, 0, 157, 3],
│ │ │ │ "classpqxx_1_1zview.html#a581b8c75e8c2c0de579debfca37cd725": [12, 0, 0, 157, 1],
│ │ │ │ - "classpqxx_1_1zview.html#a766cc45a178d43b1471fdc025f01535d": [12, 0, 0, 157, 0],
│ │ │ │ + "classpqxx_1_1zview.html#a581b8c75e8c2c0de579debfca37cd725": [13, 0, 0, 156, 1],
│ │ │ │ "classpqxx_1_1zview.html#a766cc45a178d43b1471fdc025f01535d": [13, 0, 0, 156, 0],
│ │ │ │ - "classpqxx_1_1zview.html#a9297b1b431ea593ea2ec6c8f0beaefa9": [12, 0, 0, 157, 5],
│ │ │ │ + "classpqxx_1_1zview.html#a766cc45a178d43b1471fdc025f01535d": [12, 0, 0, 157, 0],
│ │ │ │ "classpqxx_1_1zview.html#a9297b1b431ea593ea2ec6c8f0beaefa9": [13, 0, 0, 156, 5],
│ │ │ │ + "classpqxx_1_1zview.html#a9297b1b431ea593ea2ec6c8f0beaefa9": [12, 0, 0, 157, 5],
│ │ │ │ "classpqxx_1_1zview.html#aa713ad5896e247699dcb5be68528b0e8": [12, 0, 0, 157, 2],
│ │ │ │ "classpqxx_1_1zview.html#aa713ad5896e247699dcb5be68528b0e8": [13, 0, 0, 156, 2],
│ │ │ │ "classpqxx_1_1zview.html#ad5928543720ef457a1ca229920f33de6": [13, 0, 0, 156, 4],
│ │ │ │ "classpqxx_1_1zview.html#ad5928543720ef457a1ca229920f33de6": [12, 0, 0, 157, 4],
│ │ │ │ "composite_8hxx_source.html": [14, 0, 0, 0, 4],
│ │ │ │ "concat_8hxx_source.html": [14, 0, 0, 0, 0, 3],
│ │ │ │ "config-internal-autotools_8h_source.html": [14, 0, 0, 0, 5],
│ │ │ │ @@ -183,25 +183,25 @@
│ │ │ │ "errorhandler_8hxx_source.html": [14, 0, 0, 0, 13],
│ │ │ │ "escaping.html": [3],
│ │ │ │ "escaping.html#autotoc_md4": [3, 0],
│ │ │ │ "escaping.html#autotoc_md5": [3, 1],
│ │ │ │ "except_8hxx_source.html": [14, 0, 0, 0, 14],
│ │ │ │ "field_8hxx_source.html": [14, 0, 0, 0, 15],
│ │ │ │ "files.html": [14, 0],
│ │ │ │ - "functions.html": [13, 3, 0, 0],
│ │ │ │ "functions.html": [13, 3, 0],
│ │ │ │ + "functions.html": [13, 3, 0, 0],
│ │ │ │ "functions_b.html": [13, 3, 0, 1],
│ │ │ │ "functions_c.html": [13, 3, 0, 2],
│ │ │ │ "functions_d.html": [13, 3, 0, 3],
│ │ │ │ "functions_e.html": [13, 3, 0, 4],
│ │ │ │ "functions_enum.html": [13, 3, 4],
│ │ │ │ "functions_eval.html": [13, 3, 5],
│ │ │ │ "functions_f.html": [13, 3, 0, 5],
│ │ │ │ - "functions_func.html": [13, 3, 1],
│ │ │ │ "functions_func.html": [13, 3, 1, 0],
│ │ │ │ + "functions_func.html": [13, 3, 1],
│ │ │ │ "functions_func_b.html": [13, 3, 1, 1],
│ │ │ │ "functions_func_c.html": [13, 3, 1, 2],
│ │ │ │ "functions_func_d.html": [13, 3, 1, 3],
│ │ │ │ "functions_func_e.html": [13, 3, 1, 4],
│ │ │ │ "functions_func_f.html": [13, 3, 1, 5],
│ │ │ │ "functions_func_g.html": [13, 3, 1, 6],
│ │ │ │ "functions_func_h.html": [13, 3, 1, 7],
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreeindex5.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -80,157 +80,157 @@
│ │ │ │ "stream__query__impl_8hxx_source.html": [14, 0, 0, 0, 0, 18],
│ │ │ │ "stream__to_8hxx_source.html": [14, 0, 0, 0, 30],
│ │ │ │ "streams.html": [8],
│ │ │ │ "streams.html#autotoc_md25": [8, 0],
│ │ │ │ "streams.html#autotoc_md26": [8, 1],
│ │ │ │ "streams.html#autotoc_md27": [8, 1, 0],
│ │ │ │ "streams.html#autotoc_md28": [8, 2],
│ │ │ │ - "structpqxx_1_1byte__char__traits.html": [13, 0, 0, 11],
│ │ │ │ "structpqxx_1_1byte__char__traits.html": [12, 0, 0, 12],
│ │ │ │ + "structpqxx_1_1byte__char__traits.html": [13, 0, 0, 11],
│ │ │ │ "structpqxx_1_1forbidden__conversion.html": [12, 0, 0, 33],
│ │ │ │ "structpqxx_1_1forbidden__conversion.html": [13, 0, 0, 32],
│ │ │ │ "structpqxx_1_1has__generic__char__traits.html": [13, 0, 0, 36],
│ │ │ │ "structpqxx_1_1has__generic__char__traits.html": [12, 0, 0, 37],
│ │ │ │ - "structpqxx_1_1has__generic__char__traits_3_01TYPE_00_01std_1_1void__t_3_01decltype_07std_1_1char840b6ba899218b94596b7f0eb77dede3.html": [12, 0, 0, 38],
│ │ │ │ "structpqxx_1_1has__generic__char__traits_3_01TYPE_00_01std_1_1void__t_3_01decltype_07std_1_1char840b6ba899218b94596b7f0eb77dede3.html": [13, 0, 0, 37],
│ │ │ │ + "structpqxx_1_1has__generic__char__traits_3_01TYPE_00_01std_1_1void__t_3_01decltype_07std_1_1char840b6ba899218b94596b7f0eb77dede3.html": [12, 0, 0, 38],
│ │ │ │ "structpqxx_1_1internal_1_1array__string__traits.html": [13, 0, 0, 0, 1],
│ │ │ │ "structpqxx_1_1internal_1_1array__string__traits.html": [12, 0, 0, 0, 1],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html": [12, 0, 0, 0, 4],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html": [13, 0, 0, 0, 4],
│ │ │ │ - "structpqxx_1_1internal_1_1c__params.html#a6f64b8c77bfbf311687be6e1313f27d8": [13, 0, 0, 0, 4, 0],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html#a6f64b8c77bfbf311687be6e1313f27d8": [12, 0, 0, 0, 4, 0],
│ │ │ │ - "structpqxx_1_1internal_1_1c__params.html#a7f7597e054124f94dc53c91d1048f0ee": [12, 0, 0, 0, 4, 3],
│ │ │ │ + "structpqxx_1_1internal_1_1c__params.html#a6f64b8c77bfbf311687be6e1313f27d8": [13, 0, 0, 0, 4, 0],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html#a7f7597e054124f94dc53c91d1048f0ee": [13, 0, 0, 0, 4, 3],
│ │ │ │ + "structpqxx_1_1internal_1_1c__params.html#a7f7597e054124f94dc53c91d1048f0ee": [12, 0, 0, 0, 4, 3],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html#a9a6d51da90f51c90d3044ad9261616b8": [13, 0, 0, 0, 4, 2],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html#a9a6d51da90f51c90d3044ad9261616b8": [12, 0, 0, 0, 4, 2],
│ │ │ │ - "structpqxx_1_1internal_1_1c__params.html#aa0700df147dee1b1a38c37c43f268ba3": [13, 0, 0, 0, 4, 1],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html#aa0700df147dee1b1a38c37c43f268ba3": [12, 0, 0, 0, 4, 1],
│ │ │ │ - "structpqxx_1_1internal_1_1c__params.html#aad4eb2f440fe907fcf11467effbbff15": [13, 0, 0, 0, 4, 4],
│ │ │ │ + "structpqxx_1_1internal_1_1c__params.html#aa0700df147dee1b1a38c37c43f268ba3": [13, 0, 0, 0, 4, 1],
│ │ │ │ "structpqxx_1_1internal_1_1c__params.html#aad4eb2f440fe907fcf11467effbbff15": [12, 0, 0, 0, 4, 4],
│ │ │ │ - "structpqxx_1_1internal_1_1disallowed__ambiguous__char__conversion.html": [12, 0, 0, 0, 6],
│ │ │ │ + "structpqxx_1_1internal_1_1c__params.html#aad4eb2f440fe907fcf11467effbbff15": [13, 0, 0, 0, 4, 4],
│ │ │ │ "structpqxx_1_1internal_1_1disallowed__ambiguous__char__conversion.html": [13, 0, 0, 0, 6],
│ │ │ │ + "structpqxx_1_1internal_1_1disallowed__ambiguous__char__conversion.html": [12, 0, 0, 0, 6],
│ │ │ │ "structpqxx_1_1internal_1_1enum__traits.html": [13, 0, 0, 0, 8],
│ │ │ │ "structpqxx_1_1internal_1_1enum__traits.html": [12, 0, 0, 0, 8],
│ │ │ │ "structpqxx_1_1internal_1_1float__traits.html": [13, 0, 0, 0, 9],
│ │ │ │ "structpqxx_1_1internal_1_1float__traits.html": [12, 0, 0, 0, 9],
│ │ │ │ "structpqxx_1_1internal_1_1gate_1_1connection__stream__from.html": [13, 0, 0, 0, 0, 5],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner.html": [13, 0, 0, 0, 10],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner.html": [12, 0, 0, 0, 10],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1BIG5_01_4.html": [12, 0, 0, 0, 11],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1BIG5_01_4.html": [13, 0, 0, 0, 11],
│ │ │ │ - "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__CN_01_4.html": [13, 0, 0, 0, 12],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__CN_01_4.html": [12, 0, 0, 0, 12],
│ │ │ │ - "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__JP_01_4.html": [12, 0, 0, 0, 13],
│ │ │ │ + "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__CN_01_4.html": [13, 0, 0, 0, 12],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__JP_01_4.html": [13, 0, 0, 0, 13],
│ │ │ │ + "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__JP_01_4.html": [12, 0, 0, 0, 13],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__KR_01_4.html": [12, 0, 0, 0, 14],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__KR_01_4.html": [13, 0, 0, 0, 14],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__TW_01_4.html": [12, 0, 0, 0, 15],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1EUC__TW_01_4.html": [13, 0, 0, 0, 15],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1GB18030_01_4.html": [12, 0, 0, 0, 16],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1GB18030_01_4.html": [13, 0, 0, 0, 16],
│ │ │ │ - "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1GBK_01_4.html": [12, 0, 0, 0, 17],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1GBK_01_4.html": [13, 0, 0, 0, 17],
│ │ │ │ - "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1JOHAB_01_4.html": [13, 0, 0, 0, 18],
│ │ │ │ + "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1GBK_01_4.html": [12, 0, 0, 0, 17],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1JOHAB_01_4.html": [12, 0, 0, 0, 18],
│ │ │ │ - "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1MONOBYTE_01_4.html": [13, 0, 0, 0, 19],
│ │ │ │ + "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1JOHAB_01_4.html": [13, 0, 0, 0, 18],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1MONOBYTE_01_4.html": [12, 0, 0, 0, 19],
│ │ │ │ - "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1MULE__INTERNAL_01_4.html": [13, 0, 0, 0, 20],
│ │ │ │ + "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1MONOBYTE_01_4.html": [13, 0, 0, 0, 19],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1MULE__INTERNAL_01_4.html": [12, 0, 0, 0, 20],
│ │ │ │ + "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1MULE__INTERNAL_01_4.html": [13, 0, 0, 0, 20],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1SJIS_01_4.html": [12, 0, 0, 0, 21],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1SJIS_01_4.html": [13, 0, 0, 0, 21],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1UHC_01_4.html": [13, 0, 0, 0, 22],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1UHC_01_4.html": [12, 0, 0, 0, 22],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1UTF8_01_4.html": [13, 0, 0, 0, 23],
│ │ │ │ "structpqxx_1_1internal_1_1glyph__scanner_3_01encoding__group_1_1UTF8_01_4.html": [12, 0, 0, 0, 23],
│ │ │ │ - "structpqxx_1_1internal_1_1integral__traits.html": [12, 0, 0, 0, 24],
│ │ │ │ "structpqxx_1_1internal_1_1integral__traits.html": [13, 0, 0, 0, 24],
│ │ │ │ + "structpqxx_1_1internal_1_1integral__traits.html": [12, 0, 0, 0, 24],
│ │ │ │ "structpqxx_1_1internal_1_1notice__waiters.html": [13, 0, 0, 0, 25],
│ │ │ │ "structpqxx_1_1internal_1_1notice__waiters.html": [12, 0, 0, 0, 25],
│ │ │ │ "structpqxx_1_1no__bound.html": [12, 0, 0, 51],
│ │ │ │ "structpqxx_1_1no__bound.html": [13, 0, 0, 50],
│ │ │ │ - "structpqxx_1_1no__null.html": [13, 0, 0, 51],
│ │ │ │ "structpqxx_1_1no__null.html": [12, 0, 0, 52],
│ │ │ │ - "structpqxx_1_1nullness.html": [13, 0, 0, 56],
│ │ │ │ + "structpqxx_1_1no__null.html": [13, 0, 0, 51],
│ │ │ │ "structpqxx_1_1nullness.html": [12, 0, 0, 57],
│ │ │ │ - "structpqxx_1_1nullness_3_01ENUM_00_01std_1_1enable__if__t_3_01std_1_1is__enum__v_3_01ENUM_01_4_01_4_01_4.html": [13, 0, 0, 63],
│ │ │ │ + "structpqxx_1_1nullness.html": [13, 0, 0, 56],
│ │ │ │ "structpqxx_1_1nullness_3_01ENUM_00_01std_1_1enable__if__t_3_01std_1_1is__enum__v_3_01ENUM_01_4_01_4_01_4.html": [12, 0, 0, 64],
│ │ │ │ + "structpqxx_1_1nullness_3_01ENUM_00_01std_1_1enable__if__t_3_01std_1_1is__enum__v_3_01ENUM_01_4_01_4_01_4.html": [13, 0, 0, 63],
│ │ │ │ "structpqxx_1_1nullness_3_01T_00_01std_1_1enable__if__t_3_01std_1_1is__arithmetic__v_3_01T_01_4_01_4_01_4.html": [13, 0, 0, 77],
│ │ │ │ "structpqxx_1_1nullness_3_01T_00_01std_1_1enable__if__t_3_01std_1_1is__arithmetic__v_3_01T_01_4_01_4_01_4.html": [12, 0, 0, 78],
│ │ │ │ "structpqxx_1_1nullness_3_01binarystring_01_4.html": [13, 0, 0, 57],
│ │ │ │ "structpqxx_1_1nullness_3_01binarystring_01_4.html": [12, 0, 0, 58],
│ │ │ │ - "structpqxx_1_1nullness_3_01bytes_01_4.html": [13, 0, 0, 58],
│ │ │ │ "structpqxx_1_1nullness_3_01bytes_01_4.html": [12, 0, 0, 59],
│ │ │ │ - "structpqxx_1_1nullness_3_01bytes__view_01_4.html": [13, 0, 0, 59],
│ │ │ │ + "structpqxx_1_1nullness_3_01bytes_01_4.html": [13, 0, 0, 58],
│ │ │ │ "structpqxx_1_1nullness_3_01bytes__view_01_4.html": [12, 0, 0, 60],
│ │ │ │ + "structpqxx_1_1nullness_3_01bytes__view_01_4.html": [13, 0, 0, 59],
│ │ │ │ "structpqxx_1_1nullness_3_01char_01_5_01_4.html": [13, 0, 0, 60],
│ │ │ │ "structpqxx_1_1nullness_3_01char_01_5_01_4.html": [12, 0, 0, 61],
│ │ │ │ "structpqxx_1_1nullness_3_01char_01const_01_5_01_4.html": [12, 0, 0, 62],
│ │ │ │ "structpqxx_1_1nullness_3_01char_01const_01_5_01_4.html": [13, 0, 0, 61],
│ │ │ │ "structpqxx_1_1nullness_3_01char_0fN_0e_4.html": [12, 0, 0, 63],
│ │ │ │ "structpqxx_1_1nullness_3_01char_0fN_0e_4.html": [13, 0, 0, 62],
│ │ │ │ - "structpqxx_1_1nullness_3_01range_3_01TYPE_01_4_01_4.html": [12, 0, 0, 65],
│ │ │ │ "structpqxx_1_1nullness_3_01range_3_01TYPE_01_4_01_4.html": [13, 0, 0, 64],
│ │ │ │ - "structpqxx_1_1nullness_3_01std_1_1array_3_01T_00_01N_01_4_01_4.html": [12, 0, 0, 66],
│ │ │ │ + "structpqxx_1_1nullness_3_01range_3_01TYPE_01_4_01_4.html": [12, 0, 0, 65],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1array_3_01T_00_01N_01_4_01_4.html": [13, 0, 0, 65],
│ │ │ │ + "structpqxx_1_1nullness_3_01std_1_1array_3_01T_00_01N_01_4_01_4.html": [12, 0, 0, 66],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1monostate_01_4.html": [12, 0, 0, 67],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1monostate_01_4.html": [13, 0, 0, 66],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1nullopt__t_01_4.html": [12, 0, 0, 68],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1nullopt__t_01_4.html": [13, 0, 0, 67],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1nullptr__t_01_4.html": [13, 0, 0, 68],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1nullptr__t_01_4.html": [12, 0, 0, 69],
│ │ │ │ - "structpqxx_1_1nullness_3_01std_1_1optional_3_01T_01_4_01_4.html": [13, 0, 0, 69],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1optional_3_01T_01_4_01_4.html": [12, 0, 0, 70],
│ │ │ │ + "structpqxx_1_1nullness_3_01std_1_1optional_3_01T_01_4_01_4.html": [13, 0, 0, 69],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1shared__ptr_3_01T_01_4_01_4.html": [12, 0, 0, 71],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1shared__ptr_3_01T_01_4_01_4.html": [13, 0, 0, 70],
│ │ │ │ - "structpqxx_1_1nullness_3_01std_1_1string_01_4.html": [13, 0, 0, 71],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1string_01_4.html": [12, 0, 0, 72],
│ │ │ │ + "structpqxx_1_1nullness_3_01std_1_1string_01_4.html": [13, 0, 0, 71],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1string__view_01_4.html": [12, 0, 0, 73],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1string__view_01_4.html": [13, 0, 0, 72],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1stringstream_01_4.html": [12, 0, 0, 74],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1stringstream_01_4.html": [13, 0, 0, 73],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1unique__ptr_3_01T_01_4_01_4.html": [12, 0, 0, 75],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1unique__ptr_3_01T_01_4_01_4.html": [13, 0, 0, 74],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1variant_3_01T_8_8_8_01_4_01_4.html": [13, 0, 0, 75],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1variant_3_01T_8_8_8_01_4_01_4.html": [12, 0, 0, 76],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1vector_3_01T_00_01Args_8_8_8_01_4_01_4.html": [12, 0, 0, 77],
│ │ │ │ "structpqxx_1_1nullness_3_01std_1_1vector_3_01T_00_01Args_8_8_8_01_4_01_4.html": [13, 0, 0, 76],
│ │ │ │ "structpqxx_1_1nullness_3_01zview_01_4.html": [13, 0, 0, 78],
│ │ │ │ "structpqxx_1_1nullness_3_01zview_01_4.html": [12, 0, 0, 79],
│ │ │ │ "structpqxx_1_1string__traits.html": [13, 0, 0, 103],
│ │ │ │ "structpqxx_1_1string__traits.html": [12, 0, 0, 104],
│ │ │ │ - "structpqxx_1_1string__traits_3_01binarystring_01_4.html": [12, 0, 0, 105],
│ │ │ │ "structpqxx_1_1string__traits_3_01binarystring_01_4.html": [13, 0, 0, 104],
│ │ │ │ + "structpqxx_1_1string__traits_3_01binarystring_01_4.html": [12, 0, 0, 105],
│ │ │ │ "structpqxx_1_1string__traits_3_01bool_01_4.html": [12, 0, 0, 106],
│ │ │ │ "structpqxx_1_1string__traits_3_01bool_01_4.html": [13, 0, 0, 105],
│ │ │ │ "structpqxx_1_1string__traits_3_01bytes_01_4.html": [12, 0, 0, 107],
│ │ │ │ "structpqxx_1_1string__traits_3_01bytes_01_4.html": [13, 0, 0, 106],
│ │ │ │ - "structpqxx_1_1string__traits_3_01bytes__view_01_4.html": [12, 0, 0, 108],
│ │ │ │ "structpqxx_1_1string__traits_3_01bytes__view_01_4.html": [13, 0, 0, 107],
│ │ │ │ + "structpqxx_1_1string__traits_3_01bytes__view_01_4.html": [12, 0, 0, 108],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_01_4.html": [12, 0, 0, 110],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_01_4.html": [13, 0, 0, 109],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_01_5_01_4.html": [12, 0, 0, 109],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_01_5_01_4.html": [13, 0, 0, 108],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_01const_01_5_01_4.html": [13, 0, 0, 110],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_01const_01_5_01_4.html": [12, 0, 0, 111],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_0fN_0e_4.html": [13, 0, 0, 111],
│ │ │ │ "structpqxx_1_1string__traits_3_01char_0fN_0e_4.html": [12, 0, 0, 112],
│ │ │ │ "structpqxx_1_1string__traits_3_01double_01_4.html": [13, 0, 0, 112],
│ │ │ │ "structpqxx_1_1string__traits_3_01double_01_4.html": [12, 0, 0, 113],
│ │ │ │ - "structpqxx_1_1string__traits_3_01float_01_4.html": [13, 0, 0, 113],
│ │ │ │ "structpqxx_1_1string__traits_3_01float_01_4.html": [12, 0, 0, 114],
│ │ │ │ - "structpqxx_1_1string__traits_3_01int_01_4.html": [12, 0, 0, 115],
│ │ │ │ + "structpqxx_1_1string__traits_3_01float_01_4.html": [13, 0, 0, 113],
│ │ │ │ "structpqxx_1_1string__traits_3_01int_01_4.html": [13, 0, 0, 114],
│ │ │ │ - "structpqxx_1_1string__traits_3_01long_01_4.html": [13, 0, 0, 115],
│ │ │ │ + "structpqxx_1_1string__traits_3_01int_01_4.html": [12, 0, 0, 115],
│ │ │ │ "structpqxx_1_1string__traits_3_01long_01_4.html": [12, 0, 0, 116],
│ │ │ │ - "structpqxx_1_1string__traits_3_01long_01double_01_4.html": [12, 0, 0, 117],
│ │ │ │ + "structpqxx_1_1string__traits_3_01long_01_4.html": [13, 0, 0, 115],
│ │ │ │ "structpqxx_1_1string__traits_3_01long_01double_01_4.html": [13, 0, 0, 116],
│ │ │ │ + "structpqxx_1_1string__traits_3_01long_01double_01_4.html": [12, 0, 0, 117],
│ │ │ │ "structpqxx_1_1string__traits_3_01long_01long_01_4.html": [13, 0, 0, 117],
│ │ │ │ "structpqxx_1_1string__traits_3_01long_01long_01_4.html": [12, 0, 0, 118],
│ │ │ │ - "structpqxx_1_1string__traits_3_01pqxx_1_1internal_1_1encoding__group_01_4.html": [13, 0, 0, 118],
│ │ │ │ "structpqxx_1_1string__traits_3_01pqxx_1_1internal_1_1encoding__group_01_4.html": [12, 0, 0, 119],
│ │ │ │ + "structpqxx_1_1string__traits_3_01pqxx_1_1internal_1_1encoding__group_01_4.html": [13, 0, 0, 118],
│ │ │ │ "structpqxx_1_1string__traits_3_01range_3_01TYPE_01_4_01_4.html": [12, 0, 0, 120],
│ │ │ │ "structpqxx_1_1string__traits_3_01range_3_01TYPE_01_4_01_4.html": [13, 0, 0, 119],
│ │ │ │ "structpqxx_1_1string__traits_3_01short_01_4.html": [12, 0, 0, 121],
│ │ │ │ "structpqxx_1_1string__traits_3_01short_01_4.html": [13, 0, 0, 120],
│ │ │ │ "structpqxx_1_1string__traits_3_01signed_01char_01_4.html": [12, 0, 0, 122],
│ │ │ │ "structpqxx_1_1string__traits_3_01signed_01char_01_4.html": [13, 0, 0, 121],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1array_3_01T_00_01N_01_4_01_4.html": [12, 0, 0, 123],
│ │ │ │ @@ -239,14 +239,14 @@
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1byte_01_4.html": [13, 0, 0, 123],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1monostate_01_4.html": [12, 0, 0, 125],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1monostate_01_4.html": [13, 0, 0, 124],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1nullopt__t_01_4.html": [12, 0, 0, 126],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1nullopt__t_01_4.html": [13, 0, 0, 125],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1nullptr__t_01_4.html": [12, 0, 0, 127],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1nullptr__t_01_4.html": [13, 0, 0, 126],
│ │ │ │ - "structpqxx_1_1string__traits_3_01std_1_1optional_3_01T_01_4_01_4.html": [12, 0, 0, 128],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1optional_3_01T_01_4_01_4.html": [13, 0, 0, 127],
│ │ │ │ + "structpqxx_1_1string__traits_3_01std_1_1optional_3_01T_01_4_01_4.html": [12, 0, 0, 128],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1shared__ptr_3_01T_01_4_01_4.html": [13, 0, 0, 128],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1shared__ptr_3_01T_01_4_01_4.html": [12, 0, 0, 129],
│ │ │ │ - "structpqxx_1_1string__traits_3_01std_1_1string_01_4.html": [12, 0, 0, 130],
│ │ │ │ - "structpqxx_1_1string__traits_3_01std_1_1string_01_4.html": [13, 0, 0, 129]
│ │ │ │ + "structpqxx_1_1string__traits_3_01std_1_1string_01_4.html": [13, 0, 0, 129],
│ │ │ │ + "structpqxx_1_1string__traits_3_01std_1_1string_01_4.html": [12, 0, 0, 130]
│ │ │ │ };
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/navtreeindex6.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -1,26 +1,26 @@
│ │ │ │ var NAVTREEINDEX6 = {
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1string__view_01_4.html": [12, 0, 0, 131],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1string__view_01_4.html": [13, 0, 0, 130],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1stringstream_01_4.html": [13, 0, 0, 131],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1stringstream_01_4.html": [12, 0, 0, 132],
│ │ │ │ - "structpqxx_1_1string__traits_3_01std_1_1unique__ptr_3_01T_00_01Args_8_8_8_01_4_01_4.html": [12, 0, 0, 133],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1unique__ptr_3_01T_00_01Args_8_8_8_01_4_01_4.html": [13, 0, 0, 132],
│ │ │ │ - "structpqxx_1_1string__traits_3_01std_1_1variant_3_01T_8_8_8_01_4_01_4.html": [13, 0, 0, 133],
│ │ │ │ + "structpqxx_1_1string__traits_3_01std_1_1unique__ptr_3_01T_00_01Args_8_8_8_01_4_01_4.html": [12, 0, 0, 133],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1variant_3_01T_8_8_8_01_4_01_4.html": [12, 0, 0, 134],
│ │ │ │ - "structpqxx_1_1string__traits_3_01std_1_1vector_3_01T_00_01Args_8_8_8_01_4_01_4.html": [13, 0, 0, 134],
│ │ │ │ + "structpqxx_1_1string__traits_3_01std_1_1variant_3_01T_8_8_8_01_4_01_4.html": [13, 0, 0, 133],
│ │ │ │ "structpqxx_1_1string__traits_3_01std_1_1vector_3_01T_00_01Args_8_8_8_01_4_01_4.html": [12, 0, 0, 135],
│ │ │ │ - "structpqxx_1_1string__traits_3_01unsigned_01_4.html": [13, 0, 0, 135],
│ │ │ │ + "structpqxx_1_1string__traits_3_01std_1_1vector_3_01T_00_01Args_8_8_8_01_4_01_4.html": [13, 0, 0, 134],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01_4.html": [12, 0, 0, 136],
│ │ │ │ + "structpqxx_1_1string__traits_3_01unsigned_01_4.html": [13, 0, 0, 135],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01char_01_4.html": [13, 0, 0, 136],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01char_01_4.html": [12, 0, 0, 137],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01long_01_4.html": [13, 0, 0, 137],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01long_01_4.html": [12, 0, 0, 138],
│ │ │ │ - "structpqxx_1_1string__traits_3_01unsigned_01long_01long_01_4.html": [12, 0, 0, 139],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01long_01long_01_4.html": [13, 0, 0, 138],
│ │ │ │ + "structpqxx_1_1string__traits_3_01unsigned_01long_01long_01_4.html": [12, 0, 0, 139],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01short_01_4.html": [12, 0, 0, 140],
│ │ │ │ "structpqxx_1_1string__traits_3_01unsigned_01short_01_4.html": [13, 0, 0, 139],
│ │ │ │ "structpqxx_1_1string__traits_3_01zview_01_4.html": [13, 0, 0, 140],
│ │ │ │ "structpqxx_1_1string__traits_3_01zview_01_4.html": [12, 0, 0, 141],
│ │ │ │ "subtransaction_8hxx_source.html": [14, 0, 0, 0, 31],
│ │ │ │ "thread-safety.html": [9],
│ │ │ │ "time_8hxx_source.html": [14, 0, 0, 0, 32],
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/search/all_10.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -39,15 +39,15 @@
│ │ │ │ ['../classpqxx_1_1internal_1_1result__iter.html#a0c920149f5043b7d03b7ac765447a929', 1, 'pqxx::internal::result_iter::result_iter()']
│ │ │ │ ]],
│ │ │ │ ['result_5fiteration_24', ['result_iteration', ['../classpqxx_1_1internal_1_1result__iteration.html', 1, 'pqxx::internal']]],
│ │ │ │ ['result_5fpipeline_25', ['result_pipeline', ['../classpqxx_1_1internal_1_1gate_1_1result__pipeline.html', 1, 'pqxx::internal::gate']]],
│ │ │ │ ['result_5fsize_5ftype_26', ['result_size_type', ['../namespacepqxx.html#a937d9f67d0bc04774b85efa58736852b', 1, 'pqxx']]],
│ │ │ │ ['result_5fsql_5fcursor_27', ['result_sql_cursor', ['../classpqxx_1_1internal_1_1gate_1_1result__sql__cursor.html', 1, 'pqxx::internal::gate']]],
│ │ │ │ ['results_20and_20result_20rows_28', ['Accessing results and result rows', ['../accessing-results.html', 1, '']]],
│ │ │ │ - ['results_20with_20metadata_29', ['Results with metadata', ['../accessing-results.html#autotoc_md3', 1, '']]],
│ │ │ │ + ['results_20with_20metadata_29', ['Results with metadata', ['../accessing-results.html#autotoc_md2', 1, '']]],
│ │ │ │ ['resume_30', ['resume', ['../classpqxx_1_1pipeline.html#a06667e2e73b597586e61cae8533a2874', 1, 'pqxx::pipeline']]],
│ │ │ │ ['retain_31', ['retain', ['../classpqxx_1_1pipeline.html#a5de968e394d7d9b68cfd84f9ae93f5bb', 1, 'pqxx::pipeline']]],
│ │ │ │ ['retrieve_32', ['retrieve', ['../classpqxx_1_1pipeline.html#a5f8dfe951c18c19f24dd2e7a30ef276d', 1, 'pqxx::pipeline::retrieve()'],
│ │ │ │ ['../classpqxx_1_1pipeline.html#a19c508710d0025993e41512f23de56be', 1, 'pqxx::pipeline::retrieve(query_id qid)'],
│ │ │ │ ['../classpqxx_1_1stateless__cursor.html#a97046479f709ae621473c48ed7a0932d', 1, 'pqxx::stateless_cursor::retrieve()']
│ │ │ │ ]],
│ │ │ │ ['right_20for_20my_20query_33', ['Is streaming right for my query?', ['../streams.html#autotoc_md27', 1, '']]],
│ │ │ │ @@ -59,11 +59,11 @@
│ │ │ │ ['row_5fsize_5ftype_37', ['row_size_type', ['../namespacepqxx.html#a2dedde27863671a16a59f2625bf03d03', 1, 'pqxx']]],
│ │ │ │ ['row_5fstart_38', ['row_start', ['../classpqxx_1_1array__parser.html#a039577d83d313a6daf35fd7c273e189ea776234b9f0a5c0e802f2790824042092', 1, 'pqxx::array_parser']]],
│ │ │ │ ['rownumber_39', ['rownumber', ['../classpqxx_1_1const__reverse__result__iterator.html#aadd30c2141060d954c16301e3711a02c', 1, 'pqxx::const_reverse_result_iterator::rownumber()'],
│ │ │ │ ['../classpqxx_1_1const__result__iterator.html#aadd30c2141060d954c16301e3711a02c', 1, 'pqxx::const_result_iterator::rownumber()'],
│ │ │ │ ['../classpqxx_1_1row.html#aadd30c2141060d954c16301e3711a02c', 1, 'pqxx::row::rownumber()']
│ │ │ │ ]],
│ │ │ │ ['rows_40', ['rows', ['../accessing-results.html', 1, 'Accessing results and result rows'],
│ │ │ │ - ['../accessing-results.html#autotoc_md2', 1, 'Streaming rows']
│ │ │ │ + ['../accessing-results.html#autotoc_md1', 1, 'Streaming rows']
│ │ │ │ ]],
│ │ │ │ ['rows_20of_20data_41', ['Querying rows of data', ['../accessing-results.html#autotoc_md0', 1, '']]]
│ │ │ │ ];
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/search/all_11.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -56,21 +56,21 @@
│ │ │ │ ['specialise_20tt_20type_5fname_20tt_37', ['Specialise <tt>type_name</tt>', ['../datatypes.html#autotoc_md9', 1, '']]],
│ │ │ │ ['specialize_5fparse_5fcomposite_5ffield_38', ['specialize_parse_composite_field', ['../namespacepqxx_1_1internal.html#ab1007038de5942f048d5da32e49b6b07', 1, 'pqxx::internal']]],
│ │ │ │ ['sql_20injection_39', ['SQL injection', ['../escaping.html#autotoc_md4', 1, '']]],
│ │ │ │ ['sql_5fcursor_40', ['sql_cursor', ['../classpqxx_1_1internal_1_1sql__cursor.html', 1, 'pqxx::internal']]],
│ │ │ │ ['sql_5ferror_41', ['sql_error', ['../group__exception.html#classpqxx_1_1sql__error', 1, 'pqxx']]],
│ │ │ │ ['sqlstate_42', ['sqlstate', ['../group__exception.html#a31ffc7a42e9a388eb2b7cb46647e4282', 1, 'pqxx::sql_error']]],
│ │ │ │ ['ssize_43', ['ssize', ['../namespacepqxx_1_1internal.html#af21d8461eaf6d185ed98ab88b2edac6e', 1, 'pqxx::internal::ssize()'],
│ │ │ │ - ['../classpqxx_1_1array.html#a707b514df7835fa198a29ae68897efd8', 1, 'pqxx::array::ssize()'],
│ │ │ │ - ['../classpqxx_1_1params.html#ab23b2a3b2a58bfd03fca36022ebce8b4', 1, 'pqxx::params::ssize()']
│ │ │ │ + ['../classpqxx_1_1params.html#ab23b2a3b2a58bfd03fca36022ebce8b4', 1, 'pqxx::params::ssize()'],
│ │ │ │ + ['../classpqxx_1_1array.html#a707b514df7835fa198a29ae68897efd8', 1, 'pqxx::array::ssize()']
│ │ │ │ ]],
│ │ │ │ ['started_44', ['Getting started', ['../getting-started.html', 1, '']]],
│ │ │ │ ['state_5fbuffer_5foverrun_45', ['state_buffer_overrun', ['../namespacepqxx_1_1internal.html#ac32dacb4b6c712d3d7b1de9ebad0e1d5', 1, 'pqxx::internal']]],
│ │ │ │ - ['stateless_5fcursor_46', ['stateless_cursor', ['../classpqxx_1_1stateless__cursor.html#ad77d68832afb8572fd976fc816bec89a', 1, 'pqxx::stateless_cursor::stateless_cursor(transaction_base &tx, std::string_view query, std::string_view cname, bool hold)'],
│ │ │ │ - ['../classpqxx_1_1stateless__cursor.html#afe5492d726a1765647985874d17f4149', 1, 'pqxx::stateless_cursor::stateless_cursor(transaction_base &tx, std::string_view adopted_cursor)'],
│ │ │ │ + ['stateless_5fcursor_46', ['stateless_cursor', ['../classpqxx_1_1stateless__cursor.html#afe5492d726a1765647985874d17f4149', 1, 'pqxx::stateless_cursor::stateless_cursor(transaction_base &tx, std::string_view adopted_cursor)'],
│ │ │ │ + ['../classpqxx_1_1stateless__cursor.html#ad77d68832afb8572fd976fc816bec89a', 1, 'pqxx::stateless_cursor::stateless_cursor(transaction_base &tx, std::string_view query, std::string_view cname, bool hold)'],
│ │ │ │ ['../classpqxx_1_1stateless__cursor.html', 1, 'pqxx::stateless_cursor< up, op >']
│ │ │ │ ]],
│ │ │ │ ['statement_47', ['statement', ['../prepared.html#autotoc_md22', 1, 'A special prepared statement'],
│ │ │ │ ['../prepared.html#autotoc_md20', 1, 'Preparing a statement']
│ │ │ │ ]],
│ │ │ │ ['statement_20parameters_48', ['Statement parameters', ['../parameters.html', 1, '']]],
│ │ │ │ ['statement_5fcompletion_5funknown_49', ['statement_completion_unknown', ['../group__exception.html#structpqxx_1_1statement__completion__unknown', 1, 'pqxx']]],
│ │ │ │ @@ -102,15 +102,15 @@
│ │ │ │ ['stream_5fto_59', ['stream_to', ['../classpqxx_1_1stream__to.html', 1, 'pqxx::stream_to'],
│ │ │ │ ['../classpqxx_1_1stream__to.html#a3491f56118589adff7b7fc214689ad67', 1, 'pqxx::stream_to::stream_to(transaction_base &, std::string_view table_name, Columns const &columns)'],
│ │ │ │ ['../classpqxx_1_1stream__to.html#a726187a18a93a4c5cc2343bcb9e97da8', 1, 'pqxx::stream_to::stream_to(transaction_base &tx, std::string_view table_name)']
│ │ │ │ ]],
│ │ │ │ ['streaming_20data_20em_20from_20a_20query_20em_60', ['Streaming data <em>from a query</em>', ['../streams.html#autotoc_md26', 1, '']]],
│ │ │ │ ['streaming_20data_20em_20into_20a_20table_20em_61', ['Streaming data <em>into a table</em>', ['../streams.html#autotoc_md28', 1, '']]],
│ │ │ │ ['streaming_20right_20for_20my_20query_62', ['Is streaming right for my query?', ['../streams.html#autotoc_md27', 1, '']]],
│ │ │ │ - ['streaming_20rows_63', ['Streaming rows', ['../accessing-results.html#autotoc_md2', 1, '']]],
│ │ │ │ + ['streaming_20rows_63', ['Streaming rows', ['../accessing-results.html#autotoc_md1', 1, '']]],
│ │ │ │ ['streams_64', ['Streams', ['../streams.html', 1, '']]],
│ │ │ │ ['string_20conversion_65', ['String conversion', ['../group__stringconversion.html', 1, '']]],
│ │ │ │ ['string_20escaping_66', ['String escaping', ['../escaping.html', 1, '']]],
│ │ │ │ ['string_20escaping_20functions_67', ['String-escaping functions', ['../group__escaping-functions.html', 1, '']]],
│ │ │ │ ['string_5ftraits_68', ['string_traits', ['../structpqxx_1_1string__traits.html', 1, 'pqxx']]],
│ │ │ │ ['string_5ftraits_20tt_69', ['Specialise <tt>string_traits</tt>', ['../datatypes.html#autotoc_md11', 1, '']]],
│ │ │ │ ['string_5ftraits_3c_20binarystring_20_3e_70', ['string_traits< binarystring >', ['../structpqxx_1_1string__traits_3_01binarystring_01_4.html', 1, 'pqxx']]],
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/search/all_15.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -1,13 +1,13 @@
│ │ │ │ var searchData = [
│ │ │ │ ['wait_5ffd_0', ['wait_fd', ['../namespacepqxx_1_1internal.html#ae8a3cb88d2e0bc1f1125bee862fe100b', 1, 'pqxx::internal']]],
│ │ │ │ ['wait_5ffor_1', ['wait_for', ['../namespacepqxx_1_1internal.html#ae95ba6e41e051ca26d13855aa2b512cb', 1, 'pqxx::internal']]],
│ │ │ │ ['wait_5fto_5fread_2', ['wait_to_read', ['../classpqxx_1_1connecting.html#aa60ab98dc5a2702929765f05229bf160', 1, 'pqxx::connecting']]],
│ │ │ │ ['wait_5fto_5fwrite_3', ['wait_to_write', ['../classpqxx_1_1connecting.html#a4b39dd46b61ea3e39242213bd4245eb0', 1, 'pqxx::connecting']]],
│ │ │ │ - ['with_20metadata_4', ['Results with metadata', ['../accessing-results.html#autotoc_md3', 1, '']]],
│ │ │ │ + ['with_20metadata_4', ['Results with metadata', ['../accessing-results.html#autotoc_md2', 1, '']]],
│ │ │ │ ['write_5', ['write', ['../classpqxx_1_1blob.html#a28ff055c22102e0d1bda250d20d265e8', 1, 'pqxx::blob::write()'],
│ │ │ │ ['../classpqxx_1_1largeobjectaccess.html#a60ff3072349074e732d0c00e2aefc498', 1, 'pqxx::largeobjectaccess::write(char const buf[], std::size_t len)'],
│ │ │ │ ['../classpqxx_1_1largeobjectaccess.html#addc309fe11d4d3e29547b149e4600199', 1, 'pqxx::largeobjectaccess::write(std::string_view buf)']
│ │ │ │ ]],
│ │ │ │ ['write_5fpolicy_6', ['write_policy', ['../namespacepqxx.html#a3a8103e375bc507b6e9df93e24121912', 1, 'pqxx']]],
│ │ │ │ ['write_5frow_7', ['write_row', ['../classpqxx_1_1stream__to.html#ae628c71679b4ec6ebb4378b487e4f543', 1, 'pqxx::stream_to']]],
│ │ │ │ ['write_5fvalues_8', ['write_values', ['../classpqxx_1_1stream__to.html#a41ffa59e4f36803f1e9473ed83b3c41d', 1, 'pqxx::stream_to']]]
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/search/all_2.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -14,15 +14,15 @@
│ │ │ │ ['callgate_3c_20icursorstream_20_3e_8', ['callgate< icursorstream >', ['../classpqxx_1_1internal_1_1callgate.html', 1, 'pqxx::internal']]],
│ │ │ │ ['callgate_3c_20result_20const_20_3e_9', ['callgate< result const >', ['../classpqxx_1_1internal_1_1callgate.html', 1, 'pqxx::internal']]],
│ │ │ │ ['callgate_3c_20transaction_5fbase_20_3e_10', ['callgate< transaction_base >', ['../classpqxx_1_1internal_1_1callgate.html', 1, 'pqxx::internal']]],
│ │ │ │ ['cancel_11', ['cancel', ['../classpqxx_1_1pipeline.html#ab375b0b4e02c7f1a48602c4186fbbbd7', 1, 'pqxx::pipeline']]],
│ │ │ │ ['cancel_5fquery_12', ['cancel_query', ['../classpqxx_1_1connection.html#ad1719d51a24c5aa6bd58f03a328a3833', 1, 'pqxx::connection']]],
│ │ │ │ ['case_20sensitivity_13', ['Case sensitivity', ['../classpqxx_1_1connection.html#autotoc_md29', 1, '']]],
│ │ │ │ ['cat2_14', ['cat2', ['../namespacepqxx_1_1internal.html#ae3d8bb14c1d7c63c57c59b61cf63ff09', 1, 'pqxx::internal']]],
│ │ │ │ - ['caveats_15', ['Caveats', ['../binary.html#autotoc_md1', 1, '']]],
│ │ │ │ + ['caveats_15', ['Caveats', ['../binary.html#autotoc_md3', 1, '']]],
│ │ │ │ ['cbegin_16', ['cbegin', ['../classpqxx_1_1array.html#aa091e8641639a3802f44b565194d1119', 1, 'pqxx::array']]],
│ │ │ │ ['cend_17', ['cend', ['../classpqxx_1_1array.html#a14d57111c8af2324a8e9e8e3df162d9d', 1, 'pqxx::array']]],
│ │ │ │ ['channel_18', ['channel', ['../classpqxx_1_1notification__receiver.html#a57732bae437844782bdfe6314f829d9a', 1, 'pqxx::notification_receiver::channel()'],
│ │ │ │ ['../namespacepqxx.html#adb60a62bb5ba0afac027989fe3f0869b', 1, 'pqxx::notification::channel']
│ │ │ │ ]],
│ │ │ │ ['char_5ffinder_5ffunc_19', ['char_finder_func', ['../namespacepqxx_1_1internal.html#a93267405e140acb909fe17d58746f113', 1, 'pqxx::internal']]],
│ │ │ │ ['check_5fcast_20', ['check_cast', ['../namespacepqxx.html#af61c9b8bf784c48b540deb2fe1c1f90c', 1, 'pqxx']]],
│ │ ├── ./usr/share/doc/libpqxx-doc/doxygen-html/search/all_b.js
│ │ │ ├── js-beautify {}
│ │ │ │ @@ -4,11 +4,11 @@
│ │ │ │ ['m_5fend_2', ['m_end', ['../classpqxx_1_1row.html#a0ec7d11b9721ab7bb54ec5df113ab8f5', 1, 'pqxx::row']]],
│ │ │ │ ['m_5findex_3', ['m_index', ['../classpqxx_1_1row.html#a859f508b95f424531247427189a529ef', 1, 'pqxx::row']]],
│ │ │ │ ['m_5fresult_4', ['m_result', ['../classpqxx_1_1row.html#a83a21b69ee9c581fc449d24dc33d8e65', 1, 'pqxx::row']]],
│ │ │ │ ['make_5fc_5fparams_5', ['make_c_params', ['../classpqxx_1_1params.html#a6ecf59a6ac483fe23e051ae654abc2b0', 1, 'pqxx::params']]],
│ │ │ │ ['map_5fascii_5fsearch_5fgroup_6', ['map_ascii_search_group', ['../namespacepqxx_1_1internal.html#ae26a85861af19d77bcc12ae448531d32', 1, 'pqxx::internal']]],
│ │ │ │ ['max_5fparams_7', ['max_params', ['../classpqxx_1_1placeholders.html#a066068da0d7ca3d0b38ee47ce0098843', 1, 'pqxx::placeholders']]],
│ │ │ │ ['member_5fargs_5ff_8', ['member_args_f', ['../namespacepqxx_1_1internal.html#a70ec299b53c60d248d0766cc11faacf1', 1, 'pqxx::internal']]],
│ │ │ │ - ['metadata_9', ['Results with metadata', ['../accessing-results.html#autotoc_md3', 1, '']]],
│ │ │ │ + ['metadata_9', ['Results with metadata', ['../accessing-results.html#autotoc_md2', 1, '']]],
│ │ │ │ ['multiple_20parameters_10', ['Multiple parameters', ['../parameters.html#autotoc_md18', 1, '']]],
│ │ │ │ ['my_20query_11', ['Is streaming right for my query?', ['../streams.html#autotoc_md27', 1, '']]]
│ │ │ │ ];