CYCLUS
|
Wrapper class for QueryableBackends that injects a set of Cond's into every query before being executed.
Definition at line 525 of file query_backend.h.
#include <query_backend.h>
Public Member Functions | |
virtual std::map< std::string, DbTypes > | ColumnTypes (std::string table) |
CondInjector (QueryableBackend *b, std::vector< Cond > to_inject) | |
virtual QueryResult | Query (std::string table, std::vector< Cond > *conds) |
virtual std::list< ColumnInfo > | Schema (std::string table) |
virtual std::set< std::string > | Tables () |
Public Member Functions inherited from cyclus::QueryableBackend | |
virtual | ~QueryableBackend () |
|
inline |
Definition at line 527 of file query_backend.h.
|
inlinevirtual |
Return a map of column names of the specified table to the associated database type.
Implements cyclus::QueryableBackend.
Definition at line 543 of file query_backend.h.
|
inlinevirtual |
Return a set of rows from the specificed table that match all given conditions.
Conditions are AND'd together. conds may be NULL.
Implements cyclus::QueryableBackend.
Definition at line 531 of file query_backend.h.
|
inlinevirtual |
Return information about all columns of a table.
Implements cyclus::QueryableBackend.
Definition at line 547 of file query_backend.h.
|
inlinevirtual |
Return a set of all table names currently in the database.
Implements cyclus::QueryableBackend.
Definition at line 551 of file query_backend.h.