ConnectionEventListener.java, [...]: Removing redundant modifiers.
2003-10-11 Michael Koch <konqueror@gmx.de> * javax/sql/ConnectionEventListener.java, javax/sql/ConnectionPoolDataSource.java, javax/sql/DataSource.java, javax/sql/PooledConnection.java, javax/sql/RowSet.java, javax/sql/RowSetInternal.java, javax/sql/RowSetListener.java, javax/sql/RowSetMetaData.java, javax/sql/RowSetReader.java, javax/sql/RowSetWriter.java, javax/sql/XAConnection.java, javax/sql/XADataSource.java: Removing redundant modifiers. From-SVN: r72363
This commit is contained in:
parent
547f7f8b9d
commit
e1feb64f5d
13 changed files with 126 additions and 372 deletions
|
@ -1,3 +1,19 @@
|
||||||
|
2003-10-11 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
|
* javax/sql/ConnectionEventListener.java,
|
||||||
|
javax/sql/ConnectionPoolDataSource.java,
|
||||||
|
javax/sql/DataSource.java,
|
||||||
|
javax/sql/PooledConnection.java,
|
||||||
|
javax/sql/RowSet.java,
|
||||||
|
javax/sql/RowSetInternal.java,
|
||||||
|
javax/sql/RowSetListener.java,
|
||||||
|
javax/sql/RowSetMetaData.java,
|
||||||
|
javax/sql/RowSetReader.java,
|
||||||
|
javax/sql/RowSetWriter.java,
|
||||||
|
javax/sql/XAConnection.java,
|
||||||
|
javax/sql/XADataSource.java:
|
||||||
|
Removing redundant modifiers.
|
||||||
|
|
||||||
2003-10-11 Michael Koch <konqueror@gmx.de>
|
2003-10-11 Michael Koch <konqueror@gmx.de>
|
||||||
|
|
||||||
* javax/naming/Context.java,
|
* javax/naming/Context.java,
|
||||||
|
|
|
@ -48,10 +48,10 @@ public interface ConnectionEventListener extends EventListener
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void connectionClosed(ConnectionEvent event);
|
void connectionClosed(ConnectionEvent event);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void connectionErrorOccurred(ConnectionEvent event);
|
void connectionErrorOccurred(ConnectionEvent event);
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,31 +49,31 @@ public interface ConnectionPoolDataSource
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public PooledConnection getPooledConnection() throws SQLException;
|
PooledConnection getPooledConnection() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public PooledConnection getPooledConnection(String user, String password)
|
PooledConnection getPooledConnection(String user, String password)
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public PrintWriter getLogWriter() throws SQLException;
|
PrintWriter getLogWriter() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void setLogWriter(PrintWriter out) throws SQLException;
|
void setLogWriter(PrintWriter out) throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void setLoginTimeout(int seconds) throws SQLException;
|
void setLoginTimeout(int seconds) throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public int getLoginTimeout() throws SQLException;
|
int getLoginTimeout() throws SQLException;
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,31 +50,31 @@ public interface DataSource
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public Connection getConnection() throws SQLException;
|
Connection getConnection() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public Connection getConnection(String username, String password)
|
Connection getConnection(String username, String password)
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public PrintWriter getLogWriter() throws SQLException;
|
PrintWriter getLogWriter() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void setLogWriter(PrintWriter out) throws SQLException;
|
void setLogWriter(PrintWriter out) throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void setLoginTimeout(int seconds) throws SQLException;
|
void setLoginTimeout(int seconds) throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public int getLoginTimeout() throws SQLException;
|
int getLoginTimeout() throws SQLException;
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,20 +49,20 @@ public interface PooledConnection
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public Connection getConnection() throws SQLException;
|
Connection getConnection() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void close() throws SQLException;
|
void close() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void addConnectionEventListener(ConnectionEventListener listener);
|
void addConnectionEventListener(ConnectionEventListener listener);
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void removeConnectionEventListener(ConnectionEventListener listener);
|
void removeConnectionEventListener(ConnectionEventListener listener);
|
||||||
}
|
}
|
||||||
|
|
|
@ -58,304 +58,130 @@ import java.util.Map;
|
||||||
*/
|
*/
|
||||||
public interface RowSet extends ResultSet
|
public interface RowSet extends ResultSet
|
||||||
{
|
{
|
||||||
/**
|
String getUrl() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public String getUrl() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setUrl(String url) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setUrl(String url) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
String getDataSourceName();
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public String getDataSourceName();
|
|
||||||
|
|
||||||
/**
|
void setDataSourceName(String name) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setDataSourceName(String name) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
String getUsername();
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public String getUsername();
|
|
||||||
|
|
||||||
/**
|
void setUsername(String name) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setUsername(String name) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
String getPassword();
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public String getPassword();
|
|
||||||
|
|
||||||
/**
|
void setPassword(String password) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setPassword(String password) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
int getTransactionIsolation();
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public int getTransactionIsolation();
|
|
||||||
|
|
||||||
/**
|
void setTransactionIsolation(int level) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTransactionIsolation(int level) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
Map getTypeMap() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public Map getTypeMap() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setTypeMap(Map map) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTypeMap(Map map) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
String getCommand();
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public String getCommand();
|
|
||||||
|
|
||||||
/**
|
void setCommand(String cmd) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setCommand(String cmd) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
boolean isReadOnly();
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public boolean isReadOnly();
|
|
||||||
|
|
||||||
/**
|
void setReadOnly(boolean value) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setReadOnly(boolean value) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
int getMaxFieldSize() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public int getMaxFieldSize() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setMaxFieldSize(int max) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setMaxFieldSize(int max) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
int getMaxRows() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public int getMaxRows() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setMaxRows(int max) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setMaxRows(int max) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
boolean getEscapeProcessing() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public boolean getEscapeProcessing() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setEscapeProcessing(boolean enable) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setEscapeProcessing(boolean enable) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
int getQueryTimeout() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public int getQueryTimeout() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setQueryTimeout(int seconds) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setQueryTimeout(int seconds) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setType(int type) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setType(int type) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setConcurrency(int concurrency) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setConcurrency(int concurrency) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setNull(int parameterIndex, int sqlType) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setNull(int parameterIndex, int sqlType) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setNull(int paramIndex, int sqlType, String typeName) throws
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setNull(int paramIndex, int sqlType, String typeName) throws
|
|
||||||
SQLException;
|
SQLException;
|
||||||
|
|
||||||
/**
|
void setBoolean(int parameterIndex, boolean x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setBoolean(int parameterIndex, boolean x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setByte(int parameterIndex, byte x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setByte(int parameterIndex, byte x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setShort(int parameterIndex, short x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setShort(int parameterIndex, short x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setInt(int parameterIndex, int x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setInt(int parameterIndex, int x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setLong(int parameterIndex, long x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setLong(int parameterIndex, long x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setFloat(int parameterIndex, float x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setFloat(int parameterIndex, float x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setDouble(int parameterIndex, double x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setDouble(int parameterIndex, double x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setBigDecimal(int parameterIndex, BigDecimal x) throws
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setBigDecimal(int parameterIndex, BigDecimal x) throws
|
|
||||||
SQLException;
|
SQLException;
|
||||||
|
|
||||||
/**
|
void setString(int parameterIndex, String x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setString(int parameterIndex, String x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setBytes(int parameterIndex, byte[] x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setBytes(int parameterIndex, byte[] x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setDate(int parameterIndex, Date x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setDate(int parameterIndex, Date x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setTime(int parameterIndex, Time x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTime(int parameterIndex, Time x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setTimestamp(int parameterIndex, Timestamp x) throws
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTimestamp(int parameterIndex, Timestamp x) throws
|
|
||||||
SQLException;
|
SQLException;
|
||||||
|
|
||||||
/**
|
void setAsciiStream(int parameterIndex, InputStream x, int length)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setAsciiStream(int parameterIndex, InputStream x, int length)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setBinaryStream(int parameterIndex, InputStream x, int length)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setBinaryStream(int parameterIndex, InputStream x, int length)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setCharacterStream(int parameterIndex, Reader reader, int
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setCharacterStream(int parameterIndex, Reader reader, int
|
|
||||||
length) throws SQLException;
|
length) throws SQLException;
|
||||||
|
|
||||||
/**
|
void setObject(int parameterIndex, Object x, int targetSqlType, int
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setObject(int parameterIndex, Object x, int targetSqlType, int
|
|
||||||
scale) throws SQLException;
|
scale) throws SQLException;
|
||||||
|
|
||||||
/**
|
void setObject(int parameterIndex, Object x, int targetSqlType)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setObject(int parameterIndex, Object x, int targetSqlType)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setObject(int parameterIndex, Object x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setObject(int parameterIndex, Object x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setRef(int i, Ref x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setRef(int i, Ref x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setBlob(int i, Blob x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setBlob(int i, Blob x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setClob(int i, Clob x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setClob(int i, Clob x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setArray(int i, Array x) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setArray(int i, Array x) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setDate(int parameterIndex, Date x, Calendar cal) throws
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setDate(int parameterIndex, Date x, Calendar cal) throws
|
|
||||||
SQLException;
|
SQLException;
|
||||||
|
|
||||||
/**
|
void setTime(int parameterIndex, Time x, Calendar cal) throws
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTime(int parameterIndex, Time x, Calendar cal) throws
|
|
||||||
SQLException;
|
SQLException;
|
||||||
|
|
||||||
/**
|
void setTimestamp(int parameterIndex, Timestamp x, Calendar cal)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTimestamp(int parameterIndex, Timestamp x, Calendar cal)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void clearParameters() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void clearParameters() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void execute() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void execute() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void addRowSetListener(RowSetListener listener);
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void addRowSetListener(RowSetListener listener);
|
|
||||||
|
|
||||||
/**
|
void removeRowSetListener(RowSetListener listener);
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void removeRowSetListener(RowSetListener listener);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -50,25 +50,25 @@ public interface RowSetInternal
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public Object[] getParams() throws SQLException;
|
Object[] getParams() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public Connection getConnection() throws SQLException;
|
Connection getConnection() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public void setMetaData(RowSetMetaData md) throws SQLException;
|
void setMetaData(RowSetMetaData md) throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public ResultSet getOriginal() throws SQLException;
|
ResultSet getOriginal() throws SQLException;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @since 1.4
|
* @since 1.4
|
||||||
*/
|
*/
|
||||||
public ResultSet getOriginalRow() throws SQLException;
|
ResultSet getOriginalRow() throws SQLException;
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,18 +45,9 @@ import java.util.EventListener;
|
||||||
*/
|
*/
|
||||||
public interface RowSetListener extends EventListener
|
public interface RowSetListener extends EventListener
|
||||||
{
|
{
|
||||||
/**
|
void rowSetChanged(RowSetEvent event);
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void rowSetChanged(RowSetEvent event);
|
|
||||||
|
|
||||||
/**
|
void rowChanged(RowSetEvent event);
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void rowChanged(RowSetEvent event);
|
|
||||||
|
|
||||||
/**
|
void cursorMoved(RowSetEvent event);
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void cursorMoved(RowSetEvent event);
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,102 +46,50 @@ import java.sql.SQLException;
|
||||||
*/
|
*/
|
||||||
public interface RowSetMetaData extends ResultSetMetaData
|
public interface RowSetMetaData extends ResultSetMetaData
|
||||||
{
|
{
|
||||||
|
void setColumnCount(int columnCount) throws SQLException;
|
||||||
|
|
||||||
/**
|
void setAutoIncrement(int columnIndex, boolean property)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setColumnCount(int columnCount) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setAutoIncrement(int columnIndex, boolean property)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setCaseSensitive(int columnIndex, boolean property)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setCaseSensitive(int columnIndex, boolean property)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setSearchable(int columnIndex, boolean property)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setSearchable(int columnIndex, boolean property)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setCurrency(int columnIndex, boolean property)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setCurrency(int columnIndex, boolean property)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setNullable(int columnIndex, int property) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setNullable(int columnIndex, int property) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setSigned(int columnIndex, boolean property)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setSigned(int columnIndex, boolean property)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setColumnDisplaySize(int columnIndex, int size)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setColumnDisplaySize(int columnIndex, int size)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setColumnLabel(int columnIndex, String label)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setColumnLabel(int columnIndex, String label)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setColumnName(int columnIndex, String columnName)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setColumnName(int columnIndex, String columnName)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setSchemaName(int columnIndex, String schemaName)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setSchemaName(int columnIndex, String schemaName)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setPrecision(int columnIndex, int precision)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setPrecision(int columnIndex, int precision)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setScale(int columnIndex, int scale) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setScale(int columnIndex, int scale) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setTableName(int columnIndex, String tableName)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setTableName(int columnIndex, String tableName)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setCatalogName(int columnIndex, String catalogName)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setCatalogName(int columnIndex, String catalogName)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
|
|
||||||
/**
|
void setColumnType(int columnIndex, int SQLType) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setColumnType(int columnIndex, int SQLType) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setColumnTypeName(int columnIndex, String typeName)
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setColumnTypeName(int columnIndex, String typeName)
|
|
||||||
throws SQLException;
|
throws SQLException;
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,8 +45,5 @@ import java.sql.SQLException;
|
||||||
*/
|
*/
|
||||||
public interface RowSetReader
|
public interface RowSetReader
|
||||||
{
|
{
|
||||||
/**
|
void readData(RowSetInternal caller) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void readData(RowSetInternal caller) throws SQLException;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -45,8 +45,5 @@ import java.sql.SQLException;
|
||||||
*/
|
*/
|
||||||
public interface RowSetWriter
|
public interface RowSetWriter
|
||||||
{
|
{
|
||||||
/**
|
boolean writeData(RowSetInternal caller) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public boolean writeData(RowSetInternal caller) throws SQLException;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,8 +46,5 @@ import javax.transaction.xa.XAResource;
|
||||||
*/
|
*/
|
||||||
public interface XAConnection extends PooledConnection
|
public interface XAConnection extends PooledConnection
|
||||||
{
|
{
|
||||||
/**
|
XAResource getXAResource() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public XAResource getXAResource() throws SQLException;
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -46,34 +46,16 @@ import java.sql.SQLException;
|
||||||
*/
|
*/
|
||||||
public interface XADataSource
|
public interface XADataSource
|
||||||
{
|
{
|
||||||
/**
|
XAConnection getXAConnection() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public XAConnection getXAConnection() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
XAConnection getXAConnection(String user, String password) throws
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public XAConnection getXAConnection(String user, String password) throws
|
|
||||||
SQLException;
|
SQLException;
|
||||||
|
|
||||||
/**
|
PrintWriter getLogWriter() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public PrintWriter getLogWriter() throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setLogWriter(PrintWriter out) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setLogWriter(PrintWriter out) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
void setLoginTimeout(int seconds) throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public void setLoginTimeout(int seconds) throws SQLException;
|
|
||||||
|
|
||||||
/**
|
int getLoginTimeout() throws SQLException;
|
||||||
* @since 1.4
|
|
||||||
*/
|
|
||||||
public int getLoginTimeout() throws SQLException;
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue