Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/wopss/dodbm
A C++ library for database migration.
https://github.com/wopss/dodbm
cpp11 database mariadb migration-tool mysql
Last synced: about 1 month 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 (over 6 years ago)
- Default Branch: master
- Last Pushed: 2018-12-19T13:44:33.000Z (about 6 years ago)
- Last Synced: 2024-10-30T00:37:49.467Z (3 months ago)
- Topics: cpp11, database, mariadb, migration-tool, mysql
- Language: C++
- Size: 257 KB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
# dodbm
[![Build Status](https://travis-ci.com/WopsS/dodbm.svg?branch=master)](https://travis-ci.com/WopsS/dodbm)
[![Build status](https://ci.appveyor.com/api/projects/status/mjghq67lhk84v8iq?svg=true)](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)