= Library for SQLite and MySQL database support (lib825db) = [[TOC(inline, depth=1, noheading, Docs/Prog/Manual/ApplicationLibraries/lib825db/CDB)]] lib825db provides a base class CDB and inherited class CDBSQLite and CDBMySQL to facilitate apps being able to use common code for SQLite and MySQL databases. Most of our existing apps using SQLite use the C++ wrapper code namespace sq3 provided by libsql, libsql3_7_9, or lib825sql. To edit this code to use lib825db instead is fairly simple. ||legacy||lib825db||description|| ||database db;||CDB* appDB = nullptr;||Global instance for database object|| Existing apps will have {{{ #include "sqlite3.h" #include "sq3.hpp" }}} Replace with {{{ #include "dbsql.h" }}}