All Projects → sociomantic-tsunami → libdrizzle-redux

sociomantic-tsunami / libdrizzle-redux

Licence: other
The next generation of Libdrizzle with a simplified API and support for more features of the protocol

Programming Languages

c
50402 projects - #5 most used programming language
C++
36643 projects - #6 most used programming language
M4
1887 projects
shell
77523 projects
Makefile
30231 projects
Roff
2310 projects

Projects that are alternatives of or similar to libdrizzle-redux

rsmgclient
Memgraph database adapter for Rust programming language.
Stars: ✭ 24 (+71.43%)
Mutual labels:  database-connector
hata
Async Discord API wrapper.
Stars: ✭ 156 (+1014.29%)
Mutual labels:  api-wrapper
powershellwrapper
This PowerShell module acts as a wrapper for the IT Glue API.
Stars: ✭ 96 (+585.71%)
Mutual labels:  api-wrapper
spartacus-csharp
Spartacus is a multi-purpose library written in C#.
Stars: ✭ 23 (+64.29%)
Mutual labels:  database-connector
cvpysdk
Developer SDK - Python
Stars: ✭ 50 (+257.14%)
Mutual labels:  api-wrapper
cpAPI
A Flask API that gives updates about the upcoming contests on various Coding Platforms.
Stars: ✭ 13 (-7.14%)
Mutual labels:  api-wrapper
DBD-MariaDB
Perl MariaDB driver
Stars: ✭ 28 (+100%)
Mutual labels:  database-connector
Pyrez
(ON REWRITE) An easy to use (a)sync wrapper for Hi-Rez Studios API (Paladins, Realm Royale, and Smite), written in Python. 🐍
Stars: ✭ 23 (+64.29%)
Mutual labels:  api-wrapper
java-binance-api
Java Binance API Client
Stars: ✭ 72 (+414.29%)
Mutual labels:  api-wrapper
ruby-ambassador
Ambassador API v2 wrapper for Ruby
Stars: ✭ 20 (+42.86%)
Mutual labels:  api-wrapper
sqb
Extensible, multi-dialect SQL query builder and Database connection framework for NodeJS
Stars: ✭ 14 (+0%)
Mutual labels:  database-connector
garuda
Automagically Exposing Django ORM over gRPC for microservices written in any other languages
Stars: ✭ 22 (+57.14%)
Mutual labels:  database-connector
messages
A python package designed to make sending messages easy and efficient!
Stars: ✭ 38 (+171.43%)
Mutual labels:  api-wrapper
react-full-stack-starter
🎈Full-stack React boilerplate using `create-react-app`, Babel, Node.js, and express
Stars: ✭ 22 (+57.14%)
Mutual labels:  database-connector
chess-web-api
Chess.com public data API wrapper with "isChanged" and priority queue functionality.
Stars: ✭ 83 (+492.86%)
Mutual labels:  api-wrapper
DBD-mysql
MySQL driver for the Perl5 Database Interface (DBI)
Stars: ✭ 50 (+257.14%)
Mutual labels:  database-connector
knowledgeworks api
The API utils for querying CN-DBpedia & CN-Probase, the biggest Chinese knowledge bases
Stars: ✭ 24 (+71.43%)
Mutual labels:  api-wrapper
newsapi-php
A PHP client for the News API (https://newsapi.org/docs/get-started)
Stars: ✭ 21 (+50%)
Mutual labels:  api-wrapper
epicstore api
Epic Games Store Web API Wrapper written in Python
Stars: ✭ 48 (+242.86%)
Mutual labels:  api-wrapper
wikipedia-reference-scraper
Wikipedia API wrapper for references
Stars: ✭ 34 (+142.86%)
Mutual labels:  api-wrapper

Description Travis Build Status Coveralls Build Status v6.x.x

Drizzle Redux is a project which aims to breathe new life into the libdrizzle C connector. It is designed to allow you to syn- or asynchronously connect to and query a MySQL database server using a simple API.

Libdrizzle-redux is a fork of the official v5.1.4 Felmingham release available at https://launchpad.net/libdrizzle.

The primary reason for the fork is that development of the upstream stopped in 2013 which meant that crucial fixes and enhancements were not included in the latest stable release v5.1.4 Felmingham.

We hope that continuing the development of libdrizzle-redux can benefit current and future users of the library.

For more details on new features please refer to the release notes

Support Guarantees

  • Major branch development period: 6 months
  • Maintained minor versions: 1 most recent

Maintained Major Branches

Major Initial release date Supported until
v6.x.x v6.0.0: 2017-04-06 TBA - 6 months after next major release

Releases

Latest stable release notes | All

The release process libdrizzle-redux is based on SemVer versioning as described here. This means that the major version is increased for breaking changes, the minor version is increased for feature releases, and the patch version is increased for bug fixes that don't cause breaking changes.

Releases are handled using GitHub releases. The notes associated with a major or minor GitHub release are designed to help developers to migrate from one version to another. The changes listed are the steps you need to take to move from the previous version to the one listed.

Installing Libdrizzle Redux

There are several options for installing the library:

  • The project's apt repository at bintray offers deb packages for Ubuntu Xenial and Bionic.
  • Build from source.
  • Build and install the deb or rpm packages locally.

Please refer to the section Installing Libdrizzle Redux in the documentation for more info.

Building libdrizzle-redux

Supported compilers

Compiler Version
GNU gcc >=4.5.x
LLVM clang >=3.3
Apple LLVM clang [1] >=6.1
[1]The version listed for Apple LLVM is the compiler used in the OS X builds on Travis CI. However earlier versions should be compatible as long as they support C++11 features, i.e. Apple LLVM 5.0, Xcode 5.0 and later.

Other Dependencies

Dependency Version
autoconf >=2.61
zlib1g-dev >=0.13.x
libtool >=2.x
libssl-dev [3] >=v1.x
[3]openssl is needed if libdrizzle-redux is compiled with support for SSL connections.

To build libdrizzle-redux run the following commands:

mkdir build && cd build
autoreconf -fi ..
../configure
make
make install

For more information about compiling libdrizzle-redux please refer to compiling.rst or build the documentation, cf. below.

Linking libdrizzle-redux:

Ensure the library is in your library and include paths. For releases prior to version v6.0.2 [2] linking your app against libdrizzle-redux requires the flag -ldrizzle-redux:

g++ app.c -oapp -ldrizzle-redux -lssl -lcrypto -pthread

From version v6.0.3 and later the API level of the library is appended to the installed library name. This is also reflected in the install path for development headers which now follows the pattern:

/<include-prefix>/libdrizzle-redux[MAJOR_VERSION]/libdrizzle-redux

Thus, linking against libdrizzle-redux v6.0.3 requires the flag -ldrizzle-redux6 and if headers are included to add -I/<prefix>/libdrizzle-redux6, e.g:

g++ app.c -oapp -I/usr/include/libdrizzle-redux6 -ldrizzle-redux6 -lssl -lcrypto -pthread

Another option is to link against libdrizzle-redux using the full name of the dynamic library, e.g.:

g++ app.c -oapp -I/usr/include/libdrizzle-redux6 -l:libdrizzle-redux6.so.13 -lssl -lcrypto -pthread
[2]v6.0.2 added the major version to the package name and the library file but the release is deprecated since the linking did not work correctly.

Building documentation

Documentation can be generated in several formats:

pdf  : make latexpdf
epub : make epub
html : make html

Contributing to libdrizzle-redux

We appreciate any contributions to the development of libdrizzle-redux. One requirement is that the changes should be added in accordance with a versioning scheme based on SemVer. A set of guidelines guidelines and tools to help developers and users are available at the wiki of the `Neptune`_ project.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].