pg - PostgreSQL connector for Tarantool
- Tarantool 1.6.5+ with header files (tarantool && tarantool-dev packages)
- PostgreSQL 8.1+ header files (libpq-dev package)
Clone repository and then build it using CMake:
git clone https://github.com/tarantool/pg.git
cd pg && cmake . -DCMAKE_BUILD_TYPE=RelWithDebugInfo
make
make installYou can also use LuaRocks:
luarocks install https://raw.githubusercontent.com/tarantool/pg/master/pg-scm-1.rockspec --localSee tarantool/rocks for LuaRocks configuration details.
local pg = require('pg')
local conn = pg.connect({host = localhost, user = 'user', pass = 'pass', db = 'db'})
local tuples = conn:execute("SELECT $1 AS a, 'xx' AS b", 42)
conn:begin()
conn:execute("INSERT INTO test VALUES(1, 2, 3)")
conn:commit()Connect to a database.
Options:
host- a hostname to connectport- a port numner to connectuser- usernamepassorpassword- a passworddb- a database nameconn_string(mutual exclusive with host, port, user, pass, db) - PostgreSQL connection string
Returns:
connection ~= nilon successerror(reason)on error
Execute a statement with arguments in the current transaction.
Returns:
{ { { column1 = value, column2 = value }, ... }, { {column1 = value, ... }, ...}, ...}, trueon successerror(reason)on error
Example:
tarantool> conn:execute("SELECT $1 AS a, 'xx' AS b", 42)
---
- - - a: 42
b: xx
...
Begin a transaction.
Returns: true
Commit current transaction.
Returns: true
Rollback current transaction.
Returns: true
Execute a dummy statement to check that connection is alive.
Returns:
trueon successfalseon failure
Create a connection pool with count of size established connections.
Options:
host- hostname to connect toport- port number to connect touser- usernamepassword- passworddb- database namesize- count of connections in pool
Returns
pool ~=nilon successerror(reason)on error
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 then calling fiber will sleep until another fiber returns some connection to pool.
Returns:
conn ~= nil
Return a connection to connection pool.
Options
conn- a connection
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.