OmniSciDB
bf83d84833
|
Public Member Functions | |
ResultSet | executeQuery () throws SQLException |
int | executeUpdate () throws SQLException |
void | setNull (int parameterIndex, int sqlType) throws SQLException |
void | setBoolean (int parameterIndex, boolean x) throws SQLException |
void | setByte (int parameterIndex, byte x) throws SQLException |
void | setShort (int parameterIndex, short x) throws SQLException |
void | setInt (int parameterIndex, int x) throws SQLException |
void | setLong (int parameterIndex, long x) throws SQLException |
void | setFloat (int parameterIndex, float x) throws SQLException |
void | setDouble (int parameterIndex, double x) throws SQLException |
void | setBigDecimal (int parameterIndex, BigDecimal x) throws SQLException |
void | setString (int parameterIndex, String x) throws SQLException |
void | setBytes (int parameterIndex, byte[] x) throws SQLException |
void | setDate (int parameterIndex, Date x) throws SQLException |
void | setTime (int parameterIndex, Time x) throws SQLException |
void | setTimestamp (int parameterIndex, Timestamp x) throws SQLException |
void | setAsciiStream (int parameterIndex, InputStream x, int length) throws SQLException |
void | setUnicodeStream (int parameterIndex, InputStream x, int length) throws SQLException |
void | setBinaryStream (int parameterIndex, InputStream x, int length) throws SQLException |
void | clearParameters () throws SQLException |
void | setObject (int parameterIndex, Object x, int targetSqlType) throws SQLException |
void | setObject (int parameterIndex, Object x) throws SQLException |
boolean | execute () throws SQLException |
void | addBatch () throws SQLException |
void | setCharacterStream (int parameterIndex, Reader reader, int length) throws SQLException |
void | setRef (int parameterIndex, Ref x) throws SQLException |
void | setBlob (int parameterIndex, Blob x) throws SQLException |
void | setClob (int parameterIndex, Clob x) throws SQLException |
void | setArray (int parameterIndex, Array x) throws SQLException |
ResultSetMetaData | getMetaData () throws SQLException |
void | setDate (int parameterIndex, Date x, Calendar cal) throws SQLException |
void | setTime (int parameterIndex, Time x, Calendar cal) throws SQLException |
void | setTimestamp (int parameterIndex, Timestamp x, Calendar cal) throws SQLException |
void | setNull (int parameterIndex, int sqlType, String typeName) throws SQLException |
void | setURL (int parameterIndex, URL x) throws SQLException |
ParameterMetaData | getParameterMetaData () throws SQLException |
void | setRowId (int parameterIndex, RowId x) throws SQLException |
void | setNString (int parameterIndex, String value) throws SQLException |
void | setNCharacterStream (int parameterIndex, Reader value, long length) throws SQLException |
void | setNClob (int parameterIndex, NClob value) throws SQLException |
void | setClob (int parameterIndex, Reader reader, long length) throws SQLException |
void | setBlob (int parameterIndex, InputStream inputStream, long length) throws SQLException |
void | setNClob (int parameterIndex, Reader reader, long length) throws SQLException |
void | setSQLXML (int parameterIndex, SQLXML xmlObject) throws SQLException |
void | setObject (int parameterIndex, Object x, int targetSqlType, int scaleOrLength) throws SQLException |
void | setAsciiStream (int parameterIndex, InputStream x, long length) throws SQLException |
void | setBinaryStream (int parameterIndex, InputStream x, long length) throws SQLException |
void | setCharacterStream (int parameterIndex, Reader reader, long length) throws SQLException |
void | setAsciiStream (int parameterIndex, InputStream x) throws SQLException |
void | setBinaryStream (int parameterIndex, InputStream x) throws SQLException |
void | setCharacterStream (int parameterIndex, Reader reader) throws SQLException |
void | setNCharacterStream (int parameterIndex, Reader value) throws SQLException |
void | setClob (int parameterIndex, Reader reader) throws SQLException |
void | setBlob (int parameterIndex, InputStream inputStream) throws SQLException |
void | setNClob (int parameterIndex, Reader reader) throws SQLException |
ResultSet | executeQuery (String sql) throws SQLException |
int | executeUpdate (String sql) throws SQLException |
void | close () throws SQLException |
int | getMaxFieldSize () throws SQLException |
void | setMaxFieldSize (int max) throws SQLException |
int | getMaxRows () throws SQLException |
void | setMaxRows (int max) throws SQLException |
void | setEscapeProcessing (boolean enable) throws SQLException |
int | getQueryTimeout () throws SQLException |
void | setQueryTimeout (int seconds) throws SQLException |
void | cancel () throws SQLException |
SQLWarning | getWarnings () throws SQLException |
void | clearWarnings () throws SQLException |
void | setCursorName (String name) throws SQLException |
boolean | execute (String sql) throws SQLException |
ResultSet | getResultSet () throws SQLException |
int | getUpdateCount () throws SQLException |
boolean | getMoreResults () throws SQLException |
void | setFetchDirection (int direction) throws SQLException |
int | getFetchDirection () throws SQLException |
void | setFetchSize (int rows) throws SQLException |
int | getFetchSize () throws SQLException |
int | getResultSetConcurrency () throws SQLException |
int | getResultSetType () throws SQLException |
void | addBatch (String sql) throws SQLException |
void | clearBatch () throws SQLException |
int[] | executeBatch () throws SQLException |
Connection | getConnection () throws SQLException |
boolean | getMoreResults (int current) throws SQLException |
ResultSet | getGeneratedKeys () throws SQLException |
int | executeUpdate (String sql, int autoGeneratedKeys) throws SQLException |
int | executeUpdate (String sql, int[] columnIndexes) throws SQLException |
int | executeUpdate (String sql, String[] columnNames) throws SQLException |
boolean | execute (String sql, int autoGeneratedKeys) throws SQLException |
boolean | execute (String sql, int[] columnIndexes) throws SQLException |
boolean | execute (String sql, String[] columnNames) throws SQLException |
int | getResultSetHoldability () throws SQLException |
boolean | isClosed () throws SQLException |
void | setPoolable (boolean poolable) throws SQLException |
boolean | isPoolable () throws SQLException |
void | closeOnCompletion () throws SQLException |
boolean | isCloseOnCompletion () throws SQLException |
boolean | isWrapperFor (Class<?> iface) throws SQLException |
Public Attributes | |
SQLWarning | rootWarning = null |
Package Functions | |
OmniSciPreparedStatement (String sql, String session, OmniSciConnection connection) | |
public< T > T | unwrap (Class< T > iface) throws SQLException |
Static Package Attributes | |
static final Logger | MAPDLOGGER |
Private Member Functions | |
String | getQuery () |
boolean | isSelect () |
void | checkClosed () throws SQLException |
Private Attributes | |
String | currentSQL |
String | insertTableName |
int | parmCount = 0 |
String | brokenSQL [] |
String | parmRep [] |
boolean | parmIsNull [] |
String | listOfFields [] |
int | repCount |
String | session |
OmniSci.Client | client |
OmniSciStatement | stmt = null |
boolean | isInsert = false |
boolean | isNewBatch = true |
boolean[] | parmIsString = null |
List< TStringRow > | rows = null |
boolean | isClosed = false |
Static Private Attributes | |
static final Pattern | REGEX_PATTERN = Pattern.compile("(?i)\\s+INTO\\s+(\\w+)") |
static final Pattern | REGEX_LOF_PATTERN |
static final Pattern | REGEX_IS_SELECT_PATTERN |
Definition at line 62 of file OmniSciPreparedStatement.java.
|
inlinepackage |
Definition at line 92 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.brokenSQL, com.omnisci.jdbc.OmniSciPreparedStatement.currentSQL, com.omnisci.jdbc.OmniSciPreparedStatement.insertTableName, com.omnisci.jdbc.OmniSciPreparedStatement.isInsert, com.omnisci.jdbc.OmniSciPreparedStatement.parmCount, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, com.omnisci.jdbc.OmniSciPreparedStatement.repCount, and com.omnisci.jdbc.OmniSciPreparedStatement.session.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getMetaData().
|
inline |
Definition at line 366 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.currentSQL, com.omnisci.jdbc.OmniSciPreparedStatement.insertTableName, com.omnisci.jdbc.OmniSciPreparedStatement.isInsert, com.omnisci.jdbc.OmniSciPreparedStatement.isNewBatch, com.omnisci.jdbc.OmniSciPreparedStatement.listOfFields, com.omnisci.jdbc.OmniSciPreparedStatement.parmCount, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.rows, and com.omnisci.jdbc.OmniSciPreparedStatement.session.
|
inline |
Definition at line 929 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 823 of file OmniSciPreparedStatement.java.
|
inlineprivate |
Definition at line 1115 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.isClosed().
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.executeBatch().
|
inline |
Definition at line 938 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.rows.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.executeBatch().
|
inline |
Definition at line 334 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 838 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.rootWarning.
|
inline |
Definition at line 755 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.isClosed(), and com.omnisci.jdbc.OmniSciPreparedStatement.stmt.
Referenced by omnisci.connection.Connection.__del__(), omnisci.cursor.Cursor.__exit__(), and omnisci.connection.Connection.__exit__().
|
inline |
Definition at line 1080 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 359 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.getQuery().
Referenced by omnisci.cursor.Cursor.executemany().
|
inline |
Definition at line 853 of file OmniSciPreparedStatement.java.
Referenced by omnisci.cursor.Cursor.executemany().
|
inline |
Definition at line 1020 of file OmniSciPreparedStatement.java.
Referenced by omnisci.cursor.Cursor.executemany().
|
inline |
Definition at line 1029 of file OmniSciPreparedStatement.java.
Referenced by omnisci.cursor.Cursor.executemany().
|
inline |
Definition at line 1038 of file OmniSciPreparedStatement.java.
Referenced by omnisci.cursor.Cursor.executemany().
|
inline |
Definition at line 946 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.checkClosed(), com.omnisci.jdbc.OmniSciPreparedStatement.clearBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.insertTableName, com.omnisci.jdbc.OmniSciPreparedStatement.listOfFields, com.omnisci.jdbc.OmniSciPreparedStatement.rows, and com.omnisci.jdbc.OmniSciPreparedStatement.session.
|
inline |
Definition at line 161 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), and com.omnisci.jdbc.OmniSciPreparedStatement.isNewBatch.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.executeUpdate().
|
inline |
Definition at line 737 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 174 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.executeQuery().
|
inline |
Definition at line 746 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 993 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 1002 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 1011 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 969 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getMetaData().
|
inline |
Definition at line 889 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 902 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 984 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 766 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 784 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 471 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.currentSQL, com.omnisci.jdbc.OmniSciPreparedStatement.getConnection(), com.omnisci.jdbc.OmniSciStatement.getResultSet(), com.omnisci.jdbc.OmniSciPreparedStatement.isSelect(), com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement(), com.omnisci.jdbc.OmniSciPreparedStatement.session, and com.omnisci.jdbc.OmniSciPreparedStatement.stmt.
|
inline |
Definition at line 874 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 975 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 548 of file OmniSciPreparedStatement.java.
|
inlineprivate |
Definition at line 121 of file OmniSciPreparedStatement.java.
References File_Namespace.append(), com.omnisci.jdbc.OmniSciPreparedStatement.brokenSQL, com.omnisci.jdbc.OmniSciPreparedStatement.currentSQL, com.omnisci.jdbc.OmniSciPreparedStatement.parmCount, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.execute(), and com.omnisci.jdbc.OmniSciPreparedStatement.executeQuery().
|
inline |
Definition at line 806 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 862 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 911 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 1047 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 920 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 868 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 832 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.rootWarning.
|
inline |
Definition at line 1056 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.checkClosed(), and com.omnisci.jdbc.OmniSciPreparedStatement.close().
|
inline |
Definition at line 1089 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 1071 of file OmniSciPreparedStatement.java.
|
inlineprivate |
Definition at line 155 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.currentSQL.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getMetaData().
|
inline |
Definition at line 1107 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 463 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 304 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 644 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 674 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 248 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 324 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 654 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 683 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 445 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 604 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 719 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 190 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 199 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 267 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 426 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 664 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 692 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 454 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 594 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 710 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 844 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 276 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 501 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 240 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 797 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 880 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 895 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 232 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 216 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 224 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 775 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 790 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 575 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 701 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 585 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 614 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 728 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 566 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 183 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 529 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 340 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 350 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 633 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 1062 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 812 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.rootWarning.
|
inline |
Definition at line 436 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 557 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 208 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 624 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 256 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 285 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 510 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 294 of file OmniSciPreparedStatement.java.
References com.omnisci.jdbc.OmniSciPreparedStatement.parmIsNull, com.omnisci.jdbc.OmniSciPreparedStatement.parmIsString, com.omnisci.jdbc.OmniSciPreparedStatement.parmRep, and com.omnisci.jdbc.OmniSciPreparedStatement.repCount.
|
inline |
Definition at line 519 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 314 of file OmniSciPreparedStatement.java.
|
inline |
Definition at line 539 of file OmniSciPreparedStatement.java.
|
inlinepackage |
Definition at line 1098 of file OmniSciPreparedStatement.java.
|
private |
Definition at line 70 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), and com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement().
|
private |
Definition at line 76 of file OmniSciPreparedStatement.java.
|
private |
Definition at line 67 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.getMetaData(), com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), com.omnisci.jdbc.OmniSciPreparedStatement.isSelect(), and com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement().
|
private |
Definition at line 68 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.executeBatch(), and com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement().
|
private |
Definition at line 90 of file OmniSciPreparedStatement.java.
|
private |
Definition at line 78 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), and com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement().
|
private |
Definition at line 79 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), and com.omnisci.jdbc.OmniSciPreparedStatement.executeQuery().
|
private |
Definition at line 73 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), and com.omnisci.jdbc.OmniSciPreparedStatement.executeBatch().
|
staticpackage |
Definition at line 63 of file OmniSciPreparedStatement.java.
|
private |
Definition at line 69 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), and com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement().
|
private |
Definition at line 72 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement(), com.omnisci.jdbc.OmniSciPreparedStatement.setArray(), com.omnisci.jdbc.OmniSciPreparedStatement.setBigDecimal(), com.omnisci.jdbc.OmniSciPreparedStatement.setBoolean(), com.omnisci.jdbc.OmniSciPreparedStatement.setDate(), com.omnisci.jdbc.OmniSciPreparedStatement.setDouble(), com.omnisci.jdbc.OmniSciPreparedStatement.setFloat(), com.omnisci.jdbc.OmniSciPreparedStatement.setInt(), com.omnisci.jdbc.OmniSciPreparedStatement.setLong(), com.omnisci.jdbc.OmniSciPreparedStatement.setNull(), com.omnisci.jdbc.OmniSciPreparedStatement.setShort(), com.omnisci.jdbc.OmniSciPreparedStatement.setString(), com.omnisci.jdbc.OmniSciPreparedStatement.setTime(), and com.omnisci.jdbc.OmniSciPreparedStatement.setTimestamp().
|
private |
Definition at line 80 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement(), com.omnisci.jdbc.OmniSciPreparedStatement.setBoolean(), com.omnisci.jdbc.OmniSciPreparedStatement.setDate(), com.omnisci.jdbc.OmniSciPreparedStatement.setString(), com.omnisci.jdbc.OmniSciPreparedStatement.setTime(), and com.omnisci.jdbc.OmniSciPreparedStatement.setTimestamp().
|
private |
Definition at line 71 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement(), com.omnisci.jdbc.OmniSciPreparedStatement.setArray(), com.omnisci.jdbc.OmniSciPreparedStatement.setBigDecimal(), com.omnisci.jdbc.OmniSciPreparedStatement.setBoolean(), com.omnisci.jdbc.OmniSciPreparedStatement.setDate(), com.omnisci.jdbc.OmniSciPreparedStatement.setDouble(), com.omnisci.jdbc.OmniSciPreparedStatement.setFloat(), com.omnisci.jdbc.OmniSciPreparedStatement.setInt(), com.omnisci.jdbc.OmniSciPreparedStatement.setLong(), com.omnisci.jdbc.OmniSciPreparedStatement.setShort(), com.omnisci.jdbc.OmniSciPreparedStatement.setString(), com.omnisci.jdbc.OmniSciPreparedStatement.setTime(), and com.omnisci.jdbc.OmniSciPreparedStatement.setTimestamp().
|
staticprivate |
Definition at line 87 of file OmniSciPreparedStatement.java.
|
staticprivate |
Definition at line 83 of file OmniSciPreparedStatement.java.
|
staticprivate |
Definition at line 82 of file OmniSciPreparedStatement.java.
|
private |
Definition at line 74 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.getQuery(), com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement(), com.omnisci.jdbc.OmniSciPreparedStatement.setArray(), com.omnisci.jdbc.OmniSciPreparedStatement.setBigDecimal(), com.omnisci.jdbc.OmniSciPreparedStatement.setBoolean(), com.omnisci.jdbc.OmniSciPreparedStatement.setDate(), com.omnisci.jdbc.OmniSciPreparedStatement.setDouble(), com.omnisci.jdbc.OmniSciPreparedStatement.setFloat(), com.omnisci.jdbc.OmniSciPreparedStatement.setInt(), com.omnisci.jdbc.OmniSciPreparedStatement.setLong(), com.omnisci.jdbc.OmniSciPreparedStatement.setNull(), com.omnisci.jdbc.OmniSciPreparedStatement.setShort(), com.omnisci.jdbc.OmniSciPreparedStatement.setString(), com.omnisci.jdbc.OmniSciPreparedStatement.setTime(), and com.omnisci.jdbc.OmniSciPreparedStatement.setTimestamp().
SQLWarning com.omnisci.jdbc.OmniSciPreparedStatement.rootWarning = null |
Definition at line 65 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.clearWarnings(), com.omnisci.jdbc.OmniSciPreparedStatement.getWarnings(), and com.omnisci.jdbc.OmniSciPreparedStatement.setQueryTimeout().
|
private |
Definition at line 81 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.clearBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.executeBatch(), omnisci.thrift.ttypes.TRowSet.read(), omnisci.thrift.OmniSci.load_table_binary_args.read(), omnisci.thrift.OmniSci.load_table_args.read(), omnisci.thrift.ttypes.TRowSet.write(), omnisci.thrift.OmniSci.load_table_binary_args.write(), and omnisci.thrift.OmniSci.load_table_args.write().
|
private |
Definition at line 75 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.addBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.executeBatch(), com.omnisci.jdbc.OmniSciPreparedStatement.getMetaData(), com.omnisci.jdbc.OmniSciPreparedStatement.OmniSciPreparedStatement(), omnisci.thrift.OmniSci.disconnect_args.read(), omnisci.thrift.OmniSci.switch_database_args.read(), omnisci.thrift.OmniSci.clone_session_args.read(), omnisci.thrift.OmniSci.get_server_status_args.read(), omnisci.thrift.OmniSci.get_status_args.read(), omnisci.thrift.OmniSci.get_hardware_info_args.read(), omnisci.thrift.OmniSci.get_tables_args.read(), omnisci.thrift.OmniSci.get_physical_tables_args.read(), omnisci.thrift.OmniSci.get_views_args.read(), omnisci.thrift.OmniSci.get_tables_meta_args.read(), omnisci.thrift.OmniSci.get_table_details_args.read(), omnisci.thrift.OmniSci.get_internal_table_details_args.read(), omnisci.thrift.OmniSci.get_users_args.read(), omnisci.thrift.OmniSci.get_databases_args.read(), omnisci.thrift.OmniSci.start_heap_profile_args.read(), omnisci.thrift.OmniSci.stop_heap_profile_args.read(), omnisci.thrift.OmniSci.get_heap_profile_args.read(), omnisci.thrift.OmniSci.get_memory_args.read(), omnisci.thrift.OmniSci.clear_cpu_memory_args.read(), omnisci.thrift.OmniSci.clear_gpu_memory_args.read(), omnisci.thrift.OmniSci.set_table_epoch_args.read(), omnisci.thrift.OmniSci.set_table_epoch_by_name_args.read(), omnisci.thrift.OmniSci.get_table_epoch_args.read(), omnisci.thrift.OmniSci.get_table_epoch_by_name_args.read(), omnisci.thrift.OmniSci.get_table_epochs_args.read(), omnisci.thrift.OmniSci.set_table_epochs_args.read(), omnisci.thrift.OmniSci.get_session_info_args.read(), omnisci.thrift.OmniSci.sql_execute_args.read(), omnisci.thrift.OmniSci.sql_execute_df_args.read(), omnisci.thrift.OmniSci.sql_execute_gdf_args.read(), omnisci.thrift.OmniSci.deallocate_df_args.read(), omnisci.thrift.OmniSci.sql_validate_args.read(), omnisci.thrift.OmniSci.get_completion_hints_args.read(), omnisci.thrift.OmniSci.set_execution_mode_args.read(), omnisci.thrift.OmniSci.render_vega_args.read(), omnisci.thrift.OmniSci.get_result_row_for_pixel_args.read(), omnisci.thrift.OmniSci.get_dashboard_args.read(), omnisci.thrift.OmniSci.get_dashboards_args.read(), omnisci.thrift.OmniSci.create_dashboard_args.read(), omnisci.thrift.OmniSci.replace_dashboard_args.read(), omnisci.thrift.OmniSci.delete_dashboard_args.read(), omnisci.thrift.OmniSci.share_dashboards_args.read(), omnisci.thrift.OmniSci.delete_dashboards_args.read(), omnisci.thrift.OmniSci.share_dashboard_args.read(), omnisci.thrift.OmniSci.unshare_dashboard_args.read(), omnisci.thrift.OmniSci.unshare_dashboards_args.read(), omnisci.thrift.OmniSci.get_dashboard_grantees_args.read(), omnisci.thrift.OmniSci.get_link_view_args.read(), omnisci.thrift.OmniSci.create_link_args.read(), omnisci.thrift.OmniSci.load_table_binary_args.read(), omnisci.thrift.OmniSci.load_table_binary_columnar_args.read(), omnisci.thrift.OmniSci.load_table_binary_arrow_args.read(), omnisci.thrift.OmniSci.load_table_args.read(), omnisci.thrift.OmniSci.detect_column_types_args.read(), omnisci.thrift.OmniSci.create_table_args.read(), omnisci.thrift.OmniSci.import_table_args.read(), omnisci.thrift.OmniSci.import_geo_table_args.read(), omnisci.thrift.OmniSci.import_table_status_args.read(), omnisci.thrift.OmniSci.get_first_geo_file_in_archive_args.read(), omnisci.thrift.OmniSci.get_all_files_in_archive_args.read(), omnisci.thrift.OmniSci.get_layers_in_geo_file_args.read(), omnisci.thrift.OmniSci.query_get_outer_fragment_count_args.read(), omnisci.thrift.OmniSci.check_table_consistency_args.read(), omnisci.thrift.OmniSci.start_render_query_args.read(), omnisci.thrift.OmniSci.insert_data_args.read(), omnisci.thrift.OmniSci.checkpoint_args.read(), omnisci.thrift.OmniSci.get_roles_args.read(), omnisci.thrift.OmniSci.get_db_objects_for_grantee_args.read(), omnisci.thrift.OmniSci.get_db_object_privs_args.read(), omnisci.thrift.OmniSci.get_all_roles_for_user_args.read(), omnisci.thrift.OmniSci.has_role_args.read(), omnisci.thrift.OmniSci.has_object_privilege_args.read(), omnisci.thrift.OmniSci.set_license_key_args.read(), omnisci.thrift.OmniSci.get_license_claims_args.read(), omnisci.thrift.OmniSci.get_device_parameters_args.read(), omnisci.thrift.OmniSci.register_runtime_extension_functions_args.read(), omnisci.thrift.OmniSci.disconnect_args.write(), omnisci.thrift.OmniSci.switch_database_args.write(), omnisci.thrift.OmniSci.clone_session_args.write(), omnisci.thrift.OmniSci.get_server_status_args.write(), omnisci.thrift.OmniSci.get_status_args.write(), omnisci.thrift.OmniSci.get_hardware_info_args.write(), omnisci.thrift.OmniSci.get_tables_args.write(), omnisci.thrift.OmniSci.get_physical_tables_args.write(), omnisci.thrift.OmniSci.get_views_args.write(), omnisci.thrift.OmniSci.get_tables_meta_args.write(), omnisci.thrift.OmniSci.get_table_details_args.write(), omnisci.thrift.OmniSci.get_internal_table_details_args.write(), omnisci.thrift.OmniSci.get_users_args.write(), omnisci.thrift.OmniSci.get_databases_args.write(), omnisci.thrift.OmniSci.start_heap_profile_args.write(), omnisci.thrift.OmniSci.stop_heap_profile_args.write(), omnisci.thrift.OmniSci.get_heap_profile_args.write(), omnisci.thrift.OmniSci.get_memory_args.write(), omnisci.thrift.OmniSci.clear_cpu_memory_args.write(), omnisci.thrift.OmniSci.clear_gpu_memory_args.write(), omnisci.thrift.OmniSci.set_table_epoch_args.write(), omnisci.thrift.OmniSci.set_table_epoch_by_name_args.write(), omnisci.thrift.OmniSci.get_table_epoch_args.write(), omnisci.thrift.OmniSci.get_table_epoch_by_name_args.write(), omnisci.thrift.OmniSci.get_table_epochs_args.write(), omnisci.thrift.OmniSci.set_table_epochs_args.write(), omnisci.thrift.OmniSci.get_session_info_args.write(), omnisci.thrift.OmniSci.sql_execute_args.write(), omnisci.thrift.OmniSci.sql_execute_df_args.write(), omnisci.thrift.OmniSci.sql_execute_gdf_args.write(), omnisci.thrift.OmniSci.deallocate_df_args.write(), omnisci.thrift.OmniSci.sql_validate_args.write(), omnisci.thrift.OmniSci.get_completion_hints_args.write(), omnisci.thrift.OmniSci.set_execution_mode_args.write(), omnisci.thrift.OmniSci.render_vega_args.write(), omnisci.thrift.OmniSci.get_result_row_for_pixel_args.write(), omnisci.thrift.OmniSci.get_dashboard_args.write(), omnisci.thrift.OmniSci.get_dashboards_args.write(), omnisci.thrift.OmniSci.create_dashboard_args.write(), omnisci.thrift.OmniSci.replace_dashboard_args.write(), omnisci.thrift.OmniSci.delete_dashboard_args.write(), omnisci.thrift.OmniSci.share_dashboards_args.write(), omnisci.thrift.OmniSci.delete_dashboards_args.write(), omnisci.thrift.OmniSci.share_dashboard_args.write(), omnisci.thrift.OmniSci.unshare_dashboard_args.write(), omnisci.thrift.OmniSci.unshare_dashboards_args.write(), omnisci.thrift.OmniSci.get_dashboard_grantees_args.write(), omnisci.thrift.OmniSci.get_link_view_args.write(), omnisci.thrift.OmniSci.create_link_args.write(), omnisci.thrift.OmniSci.load_table_binary_args.write(), omnisci.thrift.OmniSci.load_table_binary_columnar_args.write(), omnisci.thrift.OmniSci.load_table_binary_arrow_args.write(), omnisci.thrift.OmniSci.load_table_args.write(), omnisci.thrift.OmniSci.detect_column_types_args.write(), omnisci.thrift.OmniSci.create_table_args.write(), omnisci.thrift.OmniSci.import_table_args.write(), omnisci.thrift.OmniSci.import_geo_table_args.write(), omnisci.thrift.OmniSci.import_table_status_args.write(), omnisci.thrift.OmniSci.get_first_geo_file_in_archive_args.write(), omnisci.thrift.OmniSci.get_all_files_in_archive_args.write(), omnisci.thrift.OmniSci.get_layers_in_geo_file_args.write(), omnisci.thrift.OmniSci.query_get_outer_fragment_count_args.write(), omnisci.thrift.OmniSci.check_table_consistency_args.write(), omnisci.thrift.OmniSci.start_render_query_args.write(), omnisci.thrift.OmniSci.insert_data_args.write(), omnisci.thrift.OmniSci.checkpoint_args.write(), omnisci.thrift.OmniSci.get_roles_args.write(), omnisci.thrift.OmniSci.get_db_objects_for_grantee_args.write(), omnisci.thrift.OmniSci.get_db_object_privs_args.write(), omnisci.thrift.OmniSci.get_all_roles_for_user_args.write(), omnisci.thrift.OmniSci.has_role_args.write(), omnisci.thrift.OmniSci.has_object_privilege_args.write(), omnisci.thrift.OmniSci.set_license_key_args.write(), omnisci.thrift.OmniSci.get_license_claims_args.write(), omnisci.thrift.OmniSci.get_device_parameters_args.write(), and omnisci.thrift.OmniSci.register_runtime_extension_functions_args.write().
|
private |
Definition at line 77 of file OmniSciPreparedStatement.java.
Referenced by com.omnisci.jdbc.OmniSciPreparedStatement.close(), and com.omnisci.jdbc.OmniSciPreparedStatement.getMetaData().