https://github.com/wopss/dodbm
A C++ library for database migration.
https://github.com/wopss/dodbm
cpp11 database mariadb migration-tool mysql
Last synced: 3 months ago
JSON representation
A C++ library for database migration.
- Host: GitHub
- URL: https://github.com/wopss/dodbm
- Owner: wopss
- License: mit
- Created: 2018-08-10T10:56:30.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T13:44:33.000Z (over 7 years ago)
- Last Synced: 2025-04-04T08:12:16.627Z (about 1 year ago)
- Topics: cpp11, database, mariadb, migration-tool, mysql
- Language: C++
- Size: 257 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# dodbm
[](https://travis-ci.com/WopsS/dodbm)
[](https://ci.appveyor.com/project/WopsS/dodbm)
A database migration library for C++ applications.
## Build instructions
### Requirements
* **[CMake](https://cmake.org/)**.
* **[MariaDB Connector/C](https://downloads.mariadb.org/connector-c/+releases/)** or **[MySQL Connector/C](https://dev.mysql.com/downloads/connector/c/)**.
### Windows
1. Download and install **[Visual Studio 2017 Community Edition](https://www.visualstudio.com/)** or a higher version.
2. Download and install the **[Requirements](#requirements)**.
3. Clone this repository.
4. Create a directory named `build` and run **[CMake](https://cmake.org/)** in it.
5. Open the solution (**dodbm.sln**) located in **build** directory.
6. Build the projects.
### Linux
1. Download and install a **C++ compiler**.
2. Download and install the **[Requirements](#requirements)**.
3. Clone this repository.
4. Create a directory named `build` and run **[CMake](https://cmake.org/)** in it.
5. Build the projects.
## How to use it
The documentation is available at [docs](/docs), but the most important parts are:
* [Getting started](/docs/tutorial.md)
* [Writing a provider](/docs/writing-a-provider.md)