# DatabaseLayer **Repository Path**: hjq8051/DatabaseLayer ## Basic Information - **Project Name**: DatabaseLayer - **Description**: DatabaseLayer是一个数据库组件,参考了CppSQLite和POCO中的数据库实现。目前支持Sqlite3和MySQL,支持windows和linux平台。 - **Primary Language**: C++ - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 15 - **Created**: 2024-12-24 - **Last Updated**: 2024-12-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README #DatabaseLayer DatabaseLayer是一个数据库组件,参考了[CppSQLite](http://www.codeproject.com/Articles/6343/CppSQLite-C-Wrapper-for-SQLite)和[POCO](http://pocoproject.org/index.html)中的数据库实现。目前支持Sqlite3和MySQL,支持跨平台。 特点: 1、提供统一的Sqlite3和MySQL的操作接口 2、只对Sqlite3和MySQL的API进行简单封装,代码简单易懂 3、CppSqlite3部分没有用到stl,支持嵌入式平台使用;CppMySQL部分用到少量STL,支持跨平台。 4、不支持Unicode 5、请参考demos中的例子