|   mysqlpp::AutoFlag< T > | A template for setting a flag on a variable as long as the object that set it is in scope. Flag resets when object goes out of scope. Works on anything that looks like bool | 
|   mysqlpp::BeecryptMutex | Wrapper around platform-specific mutexes | 
|   mysqlpp::CommandLineBase | Parses command line arguments and holds the results | 
|    mysqlpp::examples::CommandLine | Command line parsing mechanism for ../examples/*.cpp | 
|    mysqlpp::ssqlsxlat::CommandLine | Command line parser for MySQL++'s ssqlsxlat tool | 
|   mysqlpp::Comparable< T > | Mix-in that gives its subclass a full set of comparison operators | 
|   mysqlpp::Comparable< Date > |  | 
|    mysqlpp::Date | C++ form of SQL's DATE type | 
|   mysqlpp::Comparable< DateTime > |  | 
|    mysqlpp::DateTime | C++ form of SQL's DATETIME type | 
|   mysqlpp::Comparable< Time > |  | 
|    mysqlpp::Time | C++ form of SQL's TIME type | 
|   mysqlpp::ConnectionPool | Manages a pool of connections for programs that need more than one Connection object at a time, but can't predict how many they need in advance | 
|   Container |  | 
|    mysqlpp::Set< Container > | A special std::set derivative for holding MySQL data sets | 
|   mysqlpp::DBDriver | Provides a thin abstraction layer over the underlying database client library | 
|   mysqlpp::equal_list_b< Seq1, Seq2, Manip > | Same as equal_list_ba, plus the option to have some elements of the equals clause suppressed | 
|   mysqlpp::equal_list_ba< Seq1, Seq2, Manip > | Holds two lists of items, typically used to construct a SQL "equals clause" | 
|   exception |  | 
|    mysqlpp::Exception | Base class for all MySQL++ custom exceptions | 
|     mysqlpp::BadConversion | Exception thrown when a bad type conversion is attempted | 
|     mysqlpp::BadFieldName | Exception thrown when a requested named field doesn't exist | 
|     mysqlpp::BadIndex | Exception thrown when an object with operator [] or an at() method gets called with a bad index | 
|     mysqlpp::BadInsertPolicy | Exception thrown when an insert policy is too strict to create a valid INSERT statement | 
|     mysqlpp::BadOption | Exception thrown when you pass an unrecognized option to Connection::set_option() | 
|     mysqlpp::BadParamCount | Exception thrown when not enough query parameters are provided | 
|     mysqlpp::BadQuery | Exception thrown when the database server encounters a problem while processing your query | 
|     mysqlpp::ConnectionFailed | Exception thrown when there is a problem related to the database server connection | 
|     mysqlpp::DBSelectionFailed | Exception thrown when the program tries to select a new database and the database server refuses for some reason | 
|     mysqlpp::MutexFailed | Exception thrown when a BeecryptMutex object fails | 
|     mysqlpp::ObjectNotInitialized | Exception thrown when you try to use an object that isn't completely initialized | 
|     mysqlpp::SelfTestFailed | Used within MySQL++'s test harness only | 
|     mysqlpp::TypeLookupFailed | Thrown from the C++ to SQL data type conversion routine when it can't figure out how to map the type | 
|     mysqlpp::UseQueryError | Exception thrown when something goes wrong in processing a "use" query | 
|   mysqlpp::Field | Class to hold information about a SQL field | 
|   mysqlpp::Query::MaxPacketInsertPolicy< AccessController > | An insert policy object that triggers a new INSERT statement if the object to be added would cause the statement to exceed a maximum size | 
|   mysqlpp::mysql_type_info | SQL field type information | 
|   mysqlpp::NoExceptions | Disable exceptions in an object derived from OptionalExceptions | 
|   mysqlpp::NoTransaction | Compile-time substitute for Transaction, which purposely does nothing. Use it to instantiate templates that take Transaction when you don't want transactions to be used | 
|   mysqlpp::Null< Type, Behavior > | Class for holding data from a SQL column with the NULL attribute | 
|   mysqlpp::null_type | The type of the global mysqlpp::null object | 
|   mysqlpp::NullIsBlank | Class for objects that define SQL null as a blank C string | 
|   mysqlpp::NullIsNull | Class for objects that define SQL null in terms of MySQL++'s null_type | 
|   mysqlpp::NullIsZero | Class for objects that define SQL null as 0 | 
|   mysqlpp::Option | Define abstract interface for all *Option subclasses | 
|    mysqlpp::CompressOption | Enable data compression on the connection | 
|    mysqlpp::DataOption< T > | Define abstract interface for all *Options that take a lone scalar as an argument | 
|     mysqlpp::ConnectTimeoutOption | Change Connection::connect() default timeout | 
|     mysqlpp::FoundRowsOption | Make Query::affected_rows() return number of matched rows | 
|     mysqlpp::IgnoreSpaceOption | Allow spaces after function names in queries | 
|     mysqlpp::InitCommandOption | Give SQL executed on connect | 
|     mysqlpp::InteractiveOption | Assert that this is an interactive program | 
|     mysqlpp::LocalFilesOption | Enable LOAD DATA LOCAL statement | 
|     mysqlpp::LocalInfileOption | Enable LOAD LOCAL INFILE statement | 
|     mysqlpp::MultiResultsOption | Enable multiple result sets in a reply | 
|     mysqlpp::MultiStatementsOption | Enable multiple queries in a request to the server | 
|     mysqlpp::NoSchemaOption | Disable db.tbl.col syntax in queries | 
|     mysqlpp::ReadDefaultFileOption | Override use of my.cnf | 
|     mysqlpp::ReadDefaultGroupOption | Override use of my.cnf | 
|     mysqlpp::ReadTimeoutOption | Set timeout for IPC data reads | 
|     mysqlpp::ReconnectOption | Enable automatic reconnection to server | 
|     mysqlpp::ReportDataTruncationOption | Set reporting of data truncation errors | 
|     mysqlpp::SecureAuthOption | Enforce use of secure authentication, refusing connection if not available | 
|     mysqlpp::SetCharsetDirOption | Give path to charset definition files | 
|     mysqlpp::SetCharsetNameOption | Give name of default charset | 
|     mysqlpp::SetClientIpOption | Fake client IP address when connecting to embedded server | 
|     mysqlpp::SharedMemoryBaseNameOption | Set name of shmem segment for IPC | 
|     mysqlpp::WriteTimeoutOption | Set timeout for IPC data reads | 
|    mysqlpp::GuessConnectionOption | Allow C API to guess what kind of connection to use | 
|    mysqlpp::NamedPipeOption | Suggest use of named pipes | 
|    mysqlpp::SslOption | Specialized option for handling SSL parameters | 
|    mysqlpp::UseEmbeddedConnectionOption | Connect to embedded server in preference to remote server | 
|    mysqlpp::UseRemoteConnectionOption | Connect to remote server in preference to embedded server | 
|   mysqlpp::OptionalExceptions | Interface allowing a class to have optional exceptions | 
|    mysqlpp::Connection | Manages the connection to the database server | 
|     mysqlpp::TCPConnection | Specialization of Connectionfor TCP/IP | 
|     mysqlpp::UnixDomainSocketConnection | Specialization of Connectionfor Unix domain sockets | 
|     mysqlpp::WindowsNamedPipeConnection | Specialization of Connectionfor Windows named pipes | 
|    mysqlpp::Query | A class for building and executing SQL queries | 
|    mysqlpp::ResultBase | Base class for StoreQueryResult and UseQueryResult | 
|     mysqlpp::StoreQueryResult | StoreQueryResult set type for "store" queries | 
|     mysqlpp::UseQueryResult | StoreQueryResult set type for "use" queries | 
|    mysqlpp::Row | Manages rows from a result set | 
|   ostream |  | 
|    mysqlpp::Query | A class for building and executing SQL queries | 
|   ostringstream |  | 
|    mysqlpp::SQLStream | A class for building SQL-formatted strings | 
|   mysqlpp::RefCountedPointer< T, Destroyer > | Creates an object that acts as a reference-counted pointer to another object | 
|   mysqlpp::RefCountedPointer< MYSQL_RES > |  | 
|   mysqlpp::RefCountedPointer< mysqlpp::FieldNames > |  | 
|   mysqlpp::RefCountedPointer< mysqlpp::FieldTypes > |  | 
|   mysqlpp::RefCountedPointer< SQLBuffer > |  | 
|   mysqlpp::RefCountedPointerDestroyer< T > | Functor to call delete on the pointer you pass to it | 
|   mysqlpp::RefCountedPointerDestroyer< MYSQL_RES > | Functor to call mysql_free_result() on the pointer you pass to it | 
|   mysqlpp::Query::RowCountInsertPolicy< AccessController > | An insert policy object that triggers a new INSERT statement after a given number of rows have been inserted | 
|   mysqlpp::ScopedConnection | Grabs a Connection from a ConnectionPool on construction and releases it back to the pool on destruction, and provides access to the relevant Connection pointer | 
|   mysqlpp::ScopedLock | Wrapper around BeecryptMutex to add scope-bound locking and unlocking | 
|   mysqlpp::SimpleResult | Holds information about the result of queries that don't return rows | 
|   mysqlpp::Query::SizeThresholdInsertPolicy< AccessController > | An insert policy object that triggers a new INSERT statement after a size threshold for the length of the INSERT statement is exceeded | 
|   mysqlpp::SQLBuffer | Holds SQL data in string form plus type information for use in converting the string to compatible C++ data types | 
|   mysqlpp::SQLParseElement | Used within Query to hold elements for parameterized queries | 
|   mysqlpp::SQLTypeAdapter | Converts many different data types to strings suitable for use in SQL queries | 
|   mysqlpp::String | A std::string work-alike that can convert itself from SQL text data formats to C++ data types | 
|   mysqlpp::tiny_int< VT > | Class for holding an SQL TINYINTvalue | 
|   mysqlpp::Transaction | Helper object for creating exception-safe SQL transactions | 
|   unary_function |  | 
|    mysqlpp::TooOld< ConnInfoT > | Functor to test whether a given ConnectionInfo object is "too old" | 
|   mysqlpp::value_list_b< Seq, Manip > | Same as value_list_ba, plus the option to have some elements of the list suppressed | 
|   mysqlpp::value_list_ba< Seq, Manip > | Holds a list of items, typically used to construct a SQL "value list" | 
|   vector |  | 
|    mysqlpp::FieldNames | Holds a list of SQL field names | 
|    mysqlpp::FieldTypes | A vector of SQL field types | 
|    mysqlpp::SQLQueryParms | This class holds the parameter values for filling template queries | 
|    mysqlpp::StoreQueryResult | StoreQueryResult set type for "store" queries |