Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tarantool/mysql

MySQL connector for Tarantool
https://github.com/tarantool/mysql

Last synced: 3 months ago
JSON representation

MySQL connector for Tarantool

Awesome Lists containing this project

README

        

# mysql - MySQL connector for [Tarantool][]

[![fast-testing status][testing-actions-badge]][testing-actions-url]
[![publish status][publish-actions-badge]][publish-actions-url]

## Getting Started

### Prerequisites

* Tarantool 1.6.5+ with header files (tarantool && tarantool-dev /
tarantool-devel packages).
* MySQL 5.1 header files (libmysqlclient-dev package).
* OpenSSL development package.
* libucontext (only for Alpine).

If you prefer to install the connector using a system package manager you don't
need to manually install dependencies.

### Installation

#### Build from sources

Clone repository and then build it using CMake:

```sh
git clone https://github.com/tarantool/mysql.git tarantool-mysql
cd tarantool-mysql && cmake . -DCMAKE_BUILD_TYPE=RelWithDebInfo
make
make install
```

#### Run tests

To run the tests, the following preparatory steps must be completed:
* Run mysql instance.
* Connect a client to the instance and execute the commands:
* `CREATE USER 'test_user' IDENTIFIED WITH mysql_native_password BY 'pass';`
* `CREATE DATABASE tarantool_mysql_test;`
* `GRANT ALL PRIVILEGES ON *.* TO 'test_user';`
* Define MYSQL environment variable using the following format:

`ip:port:user:user_pass:db_name:`

Example:

`export MYSQL=127.0.0.1:3306:test_user:pass:tarantool_mysql_test:`

The tests can now be run by `make check`.

#### tt rocks

You can also use `tt rocks`:

```sh
tt rocks install mysql
```

#### Install a package

[Enable tarantool repository][tarantool_download] and install tarantool-mysql
package:

```sh
apt-get install tarantool-mysql # Debian or Ubuntu
yum install tarantool-mysql # CentOS
dnf install tarantool-mysql # Fedora
```

[tarantool_download]: https://www.tarantool.io/en/download/

### Usage

``` lua
local mysql = require('mysql')
local pool = mysql.pool_create({ host = '127.0.0.1', user = 'user', password = 'password', db = 'db', size = 5 })
local conn = pool:get()
local tuples, status = conn:execute("SELECT ? AS a, 'xx' AS b, NULL as c", 42))
conn:begin()
conn:execute("INSERT INTO test VALUES(1, 2, 3)")
conn:commit()
pool:put(conn)
```

## API Documentation

### `conn = mysql.connect(opts)`

Connect to a database.

*Options*:

- `host` - hostname to connect to
- `port` - port number to connect to
- `user` - username
- `password` - password
- `db` - database name
- `use_numeric_result` - provide result of the "conn:execute" as ordered list
(true/false); default value: false
- `keep_null` - provide printing null fields in the result of the
"conn:execute" (true/false); default value: false

Throws an error on failure.

*Returns*:

- `connection ~= nil` on success

### `conn:execute(statement, ...)`

Execute a statement with arguments in the current transaction.

Throws an error on failure.

*Returns*:

- `results, true` on success, where `results` is in the following form:

(when `use_numeric_result = false` or is not set on a pool/connection creation)

```lua
{
{ -- result set
{column1 = r1c1val, column2 = r1c2val, ...}, -- row
{column1 = r2c1val, column2 = r2c2val, ...}, -- row
...
},
...
}
```

(when `use_numeric_result = true` on a pool/connection creation)

```lua
{
{ -- result set
rows = {
{r1c1val, r1c2val, ...}, -- row
{r2c1val, r2c2val, ...}, -- row
...
},
metadata = {
{type = 'long', name = 'col1'}, -- column meta
{type = 'long', name = 'col2'}, -- column meta
...
},
},
...
}
```

*Example*:

(when `keep_null = false` or is not set on a pool/connection creation)

```
tarantool> conn:execute("SELECT ? AS a, 'xx' AS b", NULL AS c , 42)
---
- - - a: 42
b: xx
- true
...
```

(when `keep_null = true` on a pool/connection creation)

```
tarantool> conn:execute("SELECT ? AS a, 'xx' AS b", NULL AS c, 42)
---
- - - a: 42
b: xx
c: null
- true
...
```

### `conn:begin()`

Begin a transaction.

*Returns*: `true`

### `conn:commit()`

Commit current transaction.

*Returns*: `true`

### `conn:rollback()`

Rollback current transaction.

*Returns*: `true`

### `conn:ping()`

Execute a dummy statement to check that connection is alive.

*Returns*:

- `true` on success
- `false` on failure

### `conn:quote()`

Quote a query string.

Throws an error on failure.

*Returns*:

- `quoted_string` on success

### `conn:reset(user, pass, db)`

Update the connection authentication settings.

*Options*:

- `user` - username
- `pass` - password
- `db` - database name

Throws an error on failure.

### `conn:close()`

Close the individual connection or return it to a pool.

Throws an error on failure.

*Returns*: `true`

### `pool = mysql.pool_create(opts)`

Create a connection pool with count of size established connections.

*Options*:

- `host` - hostname to connect to
- `port` - port number to connect to
- `user` - username
- `password` - password
- `db` - database name
- `size` - count of connections in pool
- `use_numeric_result` - provide result of the "conn:execute" as ordered list
(true/false); default value: false
- `keep_null` - provide printing null fields in the result of the
"conn:execute" (true/false); default value: false

Throws an error on failure.

*Returns*

- `pool ~= nil` on success

### `conn = pool:get(opts)`

Get a connection from pool. Reset connection before returning it. If connection
is broken then it will be reestablished.
If there is no free connections and timeout is not specified then calling fiber
will sleep until another fiber returns some connection to pool.
If timeout is specified, and there is no free connections for the duration of the timeout,
then the return value is nil.

*Options*:

- `timeout` - maximum number of seconds to wait for a connection

*Returns*:

- `conn ~= nil` on success
- `conn == nil` on there is no free connections when timeout option is specified

### `pool:put(conn)`

Return a connection to connection pool.

*Options*

- `conn` - a connection

### `pool:close()`

Close all connections in pool.

*Returns*: `true`

## Comments

All calls to connections api will be serialized, so it should to be safe to
use one connection from some count of fibers. But you should understand,
that you can have some unwanted behavior across db calls, for example if
another fiber 'injects' some sql between two your calls.

## See Also

* [Tests][]
* [Tarantool][]
* [Tarantool Rocks][TarantoolRocks]

[Tarantool]: http://github.com/tarantool/tarantool
[Tests]: https://github.com/tarantool/mysql/tree/master/test
[TarantoolRocks]: https://github.com/tarantool/rocks

[testing-actions-badge]: https://github.com/tarantool/mysql/actions/workflows/fast_testing.yml/badge.svg
[testing-actions-url]: https://github.com/tarantool/mysql/actions/workflows/fast_testing.yml
[publish-actions-badge]: https://github.com/tarantool/mysql/actions/workflows/publish.yml/badge.svg
[publish-actions-url]: https://github.com/tarantool/mysql/actions/workflows/publish.yml