org.tarantool.TarantoolSQLOps Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of connector Show documentation
Show all versions of connector Show documentation
Tarantool client for java
package org.tarantool;
public interface TarantoolSQLOps {
Update update(String sql, Tuple... bind);
Result query(String sql, Tuple... bind);
}