|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectbr.ufg.integrate.jdbc.StatementImpl
public class StatementImpl
| Field Summary | |
|---|---|
protected ConnectionImpl |
conn
|
| Fields inherited from interface java.sql.Statement |
|---|
CLOSE_ALL_RESULTS, CLOSE_CURRENT_RESULT, EXECUTE_FAILED, KEEP_CURRENT_RESULT, NO_GENERATED_KEYS, RETURN_GENERATED_KEYS, SUCCESS_NO_INFO |
| Fields inherited from interface br.ufg.integrate.util.Constants |
|---|
DB_MAJOR_VERSION, DB_MINOR_VERSION, DRIVER_CLASS, DRIVER_MAJOR_VERSION, DRIVER_MINOR_VERSION, DRIVER_NAME, DRIVER_RELEASE, INTEGRATE_CONFIG_FILE, JDBC_COMPLIANT, JDBC_MAJOR_VERSION, JDBC_MINOR_VERSION, PRODUCT_NAME, PRODUCT_RELEASE, URL_PREFIX |
| Constructor Summary | |
|---|---|
protected |
StatementImpl(ConnectionImpl con,
Statement stm,
Integration i)
Create a new StatementImpl object. |
| Method Summary | |
|---|---|
void |
addBatch(String sql)
Implements method in interface java.sql.Statement |
void |
cancel()
Implements method in interface java.sql.Statement |
void |
clearBatch()
Implements method in interface java.sql.Statement |
void |
clearWarnings()
Implements method in interface java.sql.Statement |
void |
close()
Implements method in interface java.sql.Statement |
boolean |
execute(String sql)
Implementa o método da interface java.sql.Statement. |
boolean |
execute(String sql,
int autoGeneratedKeys)
Implements method in interface java.sql.Statement |
boolean |
execute(String sql,
int[] columnIndexes)
Implements method in interface java.sql.Statement |
boolean |
execute(String sql,
String[] columnNames)
Implements method in interface java.sql.Statement |
int[] |
executeBatch()
Implements method in interface java.sql.Statement |
ResultSet |
executeQuery(String sql)
Implementa o método da interface java.sql.Statement. |
int |
executeUpdate(String sql)
Implements method in interface java.sql.Statement |
int |
executeUpdate(String sql,
int autoGeneratedKeys)
Implements method in interface java.sql.Statement |
int |
executeUpdate(String sql,
int[] columnIndexes)
Implements method in interface java.sql.Statement |
int |
executeUpdate(String sql,
String[] columnNames)
Implements method in interface java.sql.Statement |
Connection |
getConnection()
Implements method in interface java.sql.Statement |
int |
getFetchDirection()
Implements method in interface java.sql.Statement |
int |
getFetchSize()
Implements method in interface java.sql.Statement |
ResultSet |
getGeneratedKeys()
Implements method in interface java.sql.Statement |
int |
getMaxFieldSize()
Implements method in interface java.sql.Statement |
int |
getMaxRows()
Implements method in interface java.sql.Statement |
boolean |
getMoreResults()
Implementa o método da interface java.sql.Statement. |
boolean |
getMoreResults(int current)
Implements method in interface java.sql.Statement |
int |
getQueryTimeout()
Implements method in interface java.sql.Statement |
ResultSet |
getResultSet()
Implements method in interface java.sql.Statement |
int |
getResultSetConcurrency()
Implements method in interface java.sql.Statement |
int |
getResultSetHoldability()
Implements method in interface java.sql.Statement |
int |
getResultSetType()
Implements method in interface java.sql.Statement |
int |
getUpdateCount()
Implementa o método da interface java.sql.Statement. |
SQLWarning |
getWarnings()
Implements method in interface java.sql.Statement |
boolean |
isClosed()
Implements method in interface java.sql.Statement |
boolean |
isPoolable()
Implements method in interface java.sql.Statement |
boolean |
isWrapperFor(Class arg0)
Implements method in interface java.sql.Statement |
void |
setCursorName(String name)
Implements method in interface java.sql.Statement |
void |
setEscapeProcessing(boolean enable)
Implements method in interface java.sql.Statement |
void |
setFetchDirection(int direction)
Implements method in interface java.sql.Statement |
void |
setFetchSize(int rows)
Implements method in interface java.sql.Statement |
void |
setMaxFieldSize(int max)
Implements method in interface java.sql.Statement |
void |
setMaxRows(int max)
Implements method in interface java.sql.Statement |
void |
setPoolable(boolean arg0)
Implements method in interface java.sql.Statement |
void |
setQueryTimeout(int seconds)
Implements method in interface java.sql.Statement |
Object |
unwrap(Class arg0)
Implements method in interface java.sql.Statement |
| Methods inherited from class java.lang.Object |
|---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Field Detail |
|---|
protected ConnectionImpl conn
| Constructor Detail |
|---|
protected StatementImpl(ConnectionImpl con,
Statement stm,
Integration i)
throws SQLException
SQLException| Method Detail |
|---|
public void addBatch(String sql)
throws SQLException
addBatch in interface StatementSQLExceptionStatement.addBatch(java.lang.String)
public void cancel()
throws SQLException
cancel in interface StatementSQLExceptionStatement.cancel()
public void clearBatch()
throws SQLException
clearBatch in interface StatementSQLExceptionStatement.clearBatch()
public void clearWarnings()
throws SQLException
clearWarnings in interface StatementSQLExceptionStatement.clearWarnings()
public void close()
throws SQLException
close in interface StatementSQLExceptionStatement.close()
public boolean execute(String sql)
throws SQLException
execute in interface StatementSQLExceptionStatement.execute(String),
Statement.getMoreResults(),
Statement.getResultSet()
public boolean execute(String sql,
String[] columnNames)
throws SQLException
execute in interface StatementSQLExceptionStatement.execute(java.lang.String, java.lang.String[])
public boolean execute(String sql,
int autoGeneratedKeys)
throws SQLException
execute in interface StatementSQLExceptionStatement.execute(java.lang.String)
public boolean execute(String sql,
int[] columnIndexes)
throws SQLException
execute in interface StatementSQLExceptionStatement.execute(java.lang.String)
public int[] executeBatch()
throws SQLException
executeBatch in interface StatementSQLExceptionStatement.executeBatch()
public ResultSet executeQuery(String sql)
throws SQLException
executeQuery in interface StatementSQLExceptionController.executeIntegratedQuery(String, String),
Statement.executeQuery(java.lang.String)
public int executeUpdate(String sql)
throws SQLException
executeUpdate in interface StatementSQLExceptionStatement.executeUpdate(java.lang.String)
public int executeUpdate(String sql,
String[] columnNames)
throws SQLException
executeUpdate in interface StatementSQLExceptionStatement.executeUpdate(java.lang.String)
public int executeUpdate(String sql,
int autoGeneratedKeys)
throws SQLException
executeUpdate in interface StatementSQLExceptionStatement.executeUpdate(java.lang.String)
public int executeUpdate(String sql,
int[] columnIndexes)
throws SQLException
executeUpdate in interface StatementSQLExceptionStatement.executeUpdate(java.lang.String)
public Connection getConnection()
throws SQLException
getConnection in interface StatementSQLExceptionStatement.getConnection()
public int getFetchDirection()
throws SQLException
getFetchDirection in interface StatementSQLExceptionStatement.getFetchDirection()
public int getFetchSize()
throws SQLException
getFetchSize in interface StatementSQLExceptionStatement.getFetchSize()
public ResultSet getGeneratedKeys()
throws SQLException
getGeneratedKeys in interface StatementSQLExceptionStatement.getGeneratedKeys()
public int getMaxFieldSize()
throws SQLException
getMaxFieldSize in interface StatementSQLExceptionStatement.getMaxFieldSize()
public int getMaxRows()
throws SQLException
getMaxRows in interface StatementSQLExceptionStatement.getMaxRows()
public boolean getMoreResults()
throws SQLException
getMoreResults in interface StatementSQLExceptionStatement.getMoreResults().
public boolean getMoreResults(int current)
throws SQLException
getMoreResults in interface StatementSQLExceptionStatement.getMoreResults(),
getMoreResults(int)
public int getQueryTimeout()
throws SQLException
getQueryTimeout in interface StatementSQLExceptionStatement.getQueryTimeout()
public ResultSet getResultSet()
throws SQLException
getResultSet in interface StatementSQLExceptionStatement.getResultSet()
public int getResultSetConcurrency()
throws SQLException
getResultSetConcurrency in interface StatementSQLExceptionStatement.getResultSetConcurrency()
public int getResultSetHoldability()
throws SQLException
getResultSetHoldability in interface StatementSQLExceptionStatement.getResultSetHoldability()
public int getResultSetType()
throws SQLException
getResultSetType in interface StatementSQLExceptionStatement.getResultSetType()
public int getUpdateCount()
throws SQLException
getUpdateCount in interface StatementSQLExceptionStatement.getUpdateCount(),
Statement.execute(String)
public SQLWarning getWarnings()
throws SQLException
getWarnings in interface StatementSQLExceptionStatement.getWarnings()
public boolean isClosed()
throws SQLException
isClosed in interface StatementSQLExceptionStatement.isClosed()
public boolean isPoolable()
throws SQLException
isPoolable in interface StatementSQLExceptionStatement.isPoolable()
public boolean isWrapperFor(Class arg0)
throws SQLException
isWrapperFor in interface WrapperSQLExceptionWrapper.isWrapperFor(java.lang.Class>)
public void setCursorName(String name)
throws SQLException
setCursorName in interface StatementSQLExceptionStatement.setCursorName(java.lang.String)
public void setEscapeProcessing(boolean enable)
throws SQLException
setEscapeProcessing in interface StatementSQLExceptionStatement.setEscapeProcessing(boolean)
public void setFetchDirection(int direction)
throws SQLException
setFetchDirection in interface StatementSQLExceptionStatement.setFetchDirection(int)
public void setFetchSize(int rows)
throws SQLException
setFetchSize in interface StatementSQLExceptionStatement.setFetchSize(int)
public void setMaxFieldSize(int max)
throws SQLException
setMaxFieldSize in interface StatementSQLExceptionStatement.setMaxFieldSize(int)
public void setMaxRows(int max)
throws SQLException
setMaxRows in interface StatementSQLExceptionStatement.setMaxRows(int)
public void setQueryTimeout(int seconds)
throws SQLException
setQueryTimeout in interface StatementSQLExceptionStatement.setQueryTimeout(int)
public void setPoolable(boolean arg0)
throws SQLException
setPoolable in interface StatementSQLExceptionStatement.setPoolable(boolean)
public Object unwrap(Class arg0)
throws SQLException
unwrap in interface WrapperSQLExceptionWrapper.unwrap(java.lang.Class)
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||