JDBC 1.0 Methods
This section lists the JDBC 1.0 methods (other than DatabaseMetaData methods) used by the driver. Methods are organized by class. Often, third-party driver vendors list defects or known issues by method. This section can be used in collaboration with third-party driver documentation to troubleshoot or anticipate potential interoperability problems.
- java.sql.DriverManager
- java.sql.Connection getConnection(java.lang.String url, java.lang.String user, java.lang.String password)
- java.sql.PreparedStatement
- void clearParameters()
- void setNull(int parameterIndex, int sqlType)
- void setString(int parameterIndex, java.sql.String x)
- void setBoolean(int parameterIndex, boolean x)
- void setBigDecimal(int parameterIndex, java.math.BigDecimal x)
- void setLong(int parameterIndex, long x)
- void setDouble(int parameterIndex, double x)
- void setInt(int parameterIndex, int x)
- void setFloat(int parameterIndex, float x)
- void setShort(int parameterIndex, short x)
- void setByte(int parameterIndex, byte x)
- void setTimestamp(int parameterIndex, java.sql.Timestamp x)
- void setTime(int parameterIndex, java.sql.Time x)
- void setDate(int parameterIndex, java.sql.Date x)
- void setBytes(int parameterIndex, bytes[] x)
- java.sql.Statement
- void clearWarnings()
- void close()
- boolean execute(String sql)
- java.sql.ResultSet executeQuery(String sql)
- int executeUpdate(String sql)
- boolean getMoreResults()
- int getUpdateCount()
- java.sql.ResultSet getResultSet()
- java.sql.CallableStatement
- void registerOutParameter(int parameterIndex, int sqlType)
- java.sql.Connection
- void close()
- void commit()
- void rollback()
- int getTransactionIsolation()
- void setAutoCommit(boolean autoCommit)
- java.sql.PreparedStatement prepareStatement(String sql)
- java.sql.CallableStatement prepareCall(String sql)
- java.sql.Statement createStatement()
- java.sql.ResultSet
- void close()
- boolean next()
- java.lang.String getString(int columnIndex)
- java.lang.String getString(java.lang.String columnName)
- java.math.BigDecimal getBigDecimal(int columnIndex, int scale)
- long getLong(int columnIndex)
- double getDouble(int columnIndex)
- int getInt(int columnIndex)
- float getFloat(int columnIndex)
- short getShort(int columnIndex)
- byte getByte(int columnIndex)
- boolean getBoolean(int columnIndex)
- byte[] getBytes(int columnIndex)
- byte[] getBytes(java.lang.String columnName)
- java.sql.Timestamp getTimestamp(int columnIndex)
- java.sql.Time getTime(int columnIndex)
- java.sql.Date getDate(int columnIndex)
- java.io.InputStream getBinaryStream(String columnName)