Namespaces: MySQL, ODBC, SQLite
Classes: AbstractBinder, AbstractBinding, AbstractExtraction, AbstractExtractor, AbstractPreparation, AbstractPrepare, AbstractSessionImpl, BLOB, BLOBIOS, BLOBInputStream, BLOBOutputStream, BLOBStreamBuf, Binding, BindingException, Column, Connector, DataException, ExecutionException, ExtractException, Extraction, InternalExtraction, Limit, LimitException, MetaColumn, NotImplementedException, NotSupportedException, PooledSessionHolder, PooledSessionImpl, Prepare, Range, RecordSet, RowDataMissingException, Session, SessionFactory, SessionImpl, SessionPool, SessionPoolExhaustedException, SessionUnavailableException, Statement, StatementCreator, StatementImpl, TypeHandler, UnknownDataBaseException, UnknownTypeException
Types: AbstractBindingPtr, AbstractBindingVec, AbstractExtractionPtr, AbstractExtractionVec
Functions: into, limit, lowerLimit, now, range, upperLimit, use
Interface for Binding data types to placeholders.
AbstractBinding connects a value with a placeholder via an AbstractBinder interface.
AbstractExtraction is the interface class that connects output positions to concrete values
retrieved via an AbstractExtractor.
Interface used to extract data from a single result row.
Interface used for database preparation where we first have to register all data types (and memory output locations)
before extracting data, i.
Interface for calling the appropriate AbstractPreparation method
A partial implementation of SessionImpl, providing
features and properties management.
Representation of a Binary Large OBject.
The base class for BLOBInputStream and
BLOBOutputStream.
An input stream for reading from a BLOB.
An output stream for writing to a BLOB.
This is the streambuf class used for reading from and writing to a BLOB.
A Binding maps a value to a column.
Column class is column data container.
A Connector creates SessionImpl objects.
Concrete Data Type specific extraction of values from a query result set.
Vector Data Type specialization for extraction of values from a query result set.
Limit stores information how many rows a query should return.
MetaColumn class contains column metadata information.
This class is used by SessionPool to manage SessionImpl objects.
PooledSessionImpl is a decorator created by
SessionPool that adds session pool
management to SessionImpl objects.
Class for calling the appropriate AbstractPreparation method.
Range stores information how many rows a query should return.
RecordSet provides access to data returned from a query.
A Session holds a connection to a Database and creates Statement objects.
A SessionFactory is a singleton class that stores Connectors and allows to
create Sessions of the required type:
Session ses(SessionFactory::instance().
Interface for Session functionality that subclasses must extend.
This class implements session pooling for POCO Data.
A Statement is used to execute SQL statements.
A StatementCreator creates Statements.
StatementImpl interface that subclasses must implement to define database dependent query execution.
Converts Rows to a Type and the other way around.
typedef Poco::AutoPtr < AbstractBinding > AbstractBindingPtr;
typedef std::vector < AbstractBindingPtr > AbstractBindingVec;
typedef Poco::AutoPtr < AbstractExtraction > AbstractExtractionPtr;
typedef std::vector < AbstractExtractionPtr > AbstractExtractionVec;
template < typename T > Extraction < T > * into(
T & t
);
Set Data Type specialization for extraction of values from a query result set. Multiset Data Type specialization for extraction of values from a query result set. Map Data Type specialization for extraction of values from a query result set. Multimap Data Type specialization for extraction of values from a query result set. Convenience function to allow for a more compact creation of a default extraction object
template < typename T > Extraction < T > * into(
T & t,
const T & def
);
Convenience function to allow for a more compact creation of an extraction object with the given default
template < typename T > Limit limit(
T lim,
bool hard = false
);
Creates an upperLimit
template < typename T > Limit lowerLimit(
T lim
);
void now(
Statement & statement
);
template < typename T > Range range(
T low,
T upp,
bool hard = false
);
template < typename T > Limit upperLimit(
T lim,
bool hard = false
);
template < typename T > Binding < T > * use(
const T & t
);
Specialization for std::vector. Creates the Binding. Destroys the Binding. Specialization for std::set. Creates the Binding. Destroys the Binding. Specialization for std::multiset. Creates the Binding. Destroys the Binding. Specialization for std::map. Creates the Binding. Destroys the Binding. Specialization for std::multimap. Creates the Binding. Destroys the Binding. Convenience function for a more compact Binding creation.