| The C++ version of an object stored in a database | |
| The base class for all C++ classes that can be stored in the database | |
| The base class for a usable DBField | |
| Specialized version for the bool data type, converts to / from string as SQL expects it | |
| Specialized version for std::string data type, trivial conversion to/from string | |
| Specialized version for std::vector<char>, the ONLY datatype that provides binary conversion | |
| Specialized version for std::vector<std::string> | |
| The base class for a field of a class stored in the database, corresponding to a column in a table | |
| A DBFieldBase that also contains data and perform implicit conversion to and from string | |