org.tarantool.jdbc.ds.TarantoolDataSource 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
The newest version!
package org.tarantool.jdbc.ds;
import java.sql.SQLException;
/**
* JDBC standard Tarantool specific data source properties.
*/
public interface TarantoolDataSource {
String getServerName() throws SQLException;
void setServerName(String serverName) throws SQLException;
int getPortNumber() throws SQLException;
void setPortNumber(int port) throws SQLException;
String getUser() throws SQLException;
void setUser(String userName) throws SQLException;
String getPassword() throws SQLException;
void setPassword(String password) throws SQLException;
String getDescription() throws SQLException;
String getDataSourceName() throws SQLException;
void setDataSourceName(String name) throws SQLException;
String getSocketChannelProvider() throws SQLException;
void setSocketChannelProvider(String classFqdn) throws SQLException;
int getQueryTimeout() throws SQLException;
void setQueryTimeout(int seconds) throws SQLException;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy