public class OdbcConfiguration extends Object
| Modifier and Type | Field and Description |
|---|---|
static int |
DFLT_MAX_OPEN_CURSORS
Default max number of open cursors per connection.
|
static int |
DFLT_SOCK_BUF_SIZE
Default socket send and receive buffer size.
|
static String |
DFLT_TCP_HOST
Default TCP host.
|
static int |
DFLT_TCP_PORT_FROM
Default minimum TCP port range value.
|
static int |
DFLT_TCP_PORT_TO
Default maximum TCP port range value.
|
static int |
DFLT_THREAD_POOL_SIZE
Default size of thread pool.
|
| Constructor and Description |
|---|
OdbcConfiguration()
Creates ODBC server configuration with all default values.
|
OdbcConfiguration(OdbcConfiguration cfg)
Creates ODBC server configuration by copying all properties from given configuration.
|
| Modifier and Type | Method and Description |
|---|---|
String |
getEndpointAddress()
Get ODBC endpoint address.
|
int |
getMaxOpenCursors()
Gets maximum number of opened cursors per connection.
|
int |
getSocketReceiveBufferSize()
Gets socket receive buffer size.
|
int |
getSocketSendBufferSize()
Gets socket send buffer size.
|
int |
getThreadPoolSize()
Size of thread pool that is in charge of processing ODBC tasks.
|
OdbcConfiguration |
setEndpointAddress(String addr)
Set ODBC endpoint address.
|
OdbcConfiguration |
setMaxOpenCursors(int maxOpenCursors)
Sets maximum number of opened cursors per connection.
|
OdbcConfiguration |
setSocketReceiveBufferSize(int sockRcvBufSize)
Sets socket receive buffer size.
|
OdbcConfiguration |
setSocketSendBufferSize(int sockSndBufSize)
Sets socket send buffer size.
|
OdbcConfiguration |
setThreadPoolSize(int threadPoolSize)
Sets thread pool that is in charge of processing ODBC tasks.
|
String |
toString() |
public static final String DFLT_TCP_HOST
public static final int DFLT_TCP_PORT_FROM
public static final int DFLT_TCP_PORT_TO
public static final int DFLT_SOCK_BUF_SIZE
public static final int DFLT_MAX_OPEN_CURSORS
public static final int DFLT_THREAD_POOL_SIZE
public OdbcConfiguration()
public OdbcConfiguration(OdbcConfiguration cfg)
cfg - ODBC server configuration.public String getEndpointAddress()
The following address formats are permitted:
hostname - will use provided hostname and default port range;hostname:port - will use provided hostname and port;hostname:port_from..port_to - will use provided hostname and port range.
When set to null, ODBC processor will be bound to DFLT_TCP_HOST host and default port range.
Default port range is from DFLT_TCP_PORT_FROM to DFLT_TCP_PORT_TO.
public OdbcConfiguration setEndpointAddress(String addr)
getEndpointAddress() for more information.addr - ODBC endpoint address.public int getMaxOpenCursors()
Defaults to DFLT_MAX_OPEN_CURSORS.
public OdbcConfiguration setMaxOpenCursors(int maxOpenCursors)
getMaxOpenCursors().maxOpenCursors - Maximum number of opened cursors.public int getSocketSendBufferSize()
Defaults to DFLT_SOCK_BUF_SIZE
public OdbcConfiguration setSocketSendBufferSize(int sockSndBufSize)
getSocketSendBufferSize() for more information.sockSndBufSize - Socket send buffer size in bytes.public int getSocketReceiveBufferSize()
Defaults to DFLT_SOCK_BUF_SIZE.
public OdbcConfiguration setSocketReceiveBufferSize(int sockRcvBufSize)
getSocketReceiveBufferSize() for more information.sockRcvBufSize - Socket receive buffer size in bytes.public int getThreadPoolSize()
Defaults DFLT_THREAD_POOL_SIZE.
public OdbcConfiguration setThreadPoolSize(int threadPoolSize)
getThreadPoolSize() for more
information.threadPoolSize - Thread pool that is in charge of processing ODBC tasks.
Follow @ApacheIgnite
Ignite Fabric : ver. 2.0.0 Release Date : April 30 2017