|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectbr.ufg.integrate.wrapper.jdbc.IntegrateStatement
public abstract class IntegrateStatement
Field Summary |
---|
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 |
Constructor Summary | |
---|---|
IntegrateStatement()
|
Method Summary | ||
---|---|---|
void |
addBatch(String arg0)
|
|
void |
cancel()
|
|
void |
clearBatch()
|
|
void |
clearWarnings()
|
|
abstract void |
close()
Releases this Statement object's database
and JDBC resources immediately instead of waiting for
this to happen when it is automatically closed. |
|
abstract boolean |
execute(String arg0)
|
|
boolean |
execute(String arg0,
int arg1)
|
|
boolean |
execute(String arg0,
int[] arg1)
|
|
boolean |
execute(String arg0,
String[] arg1)
|
|
int[] |
executeBatch()
|
|
abstract ResultSet |
executeQuery(String arg0)
|
|
abstract int |
executeUpdate(String arg0)
|
|
int |
executeUpdate(String arg0,
int arg1)
|
|
int |
executeUpdate(String arg0,
int[] arg1)
|
|
int |
executeUpdate(String arg0,
String[] arg1)
|
|
abstract Connection |
getConnection()
Gets the connection attribute of the Satement object |
|
int |
getFetchDirection()
Gets the fetchDirection attribute of the Satement object |
|
int |
getFetchSize()
Gets the fetchSize attribute of the Satement object |
|
ResultSet |
getGeneratedKeys()
|
|
int |
getMaxFieldSize()
Gets the maxFieldSize attribute of the Satement object |
|
int |
getMaxRows()
Gets the maxRows attribute of the Satement object |
|
boolean |
getMoreResults()
Gets the moreResults attribute of the Satement object |
|
boolean |
getMoreResults(int arg0)
|
|
int |
getQueryTimeout()
Gets the queryTimeout attribute of the Satement object |
|
ResultSet |
getResultSet()
Gets the resultSet attribute of the Satement object |
|
int |
getResultSetConcurrency()
Gets the resultSetConcurrency attribute of the Satement object |
|
int |
getResultSetHoldability()
|
|
int |
getResultSetType()
Gets the resultSetType attribute of the Satement object |
|
int |
getUpdateCount()
Gets the updateCount attribute of the Satement object |
|
SQLWarning |
getWarnings()
Gets the warnings attribute of the Satement object |
|
boolean |
isClosed()
|
|
boolean |
isPoolable()
|
|
boolean |
isWrapperFor(Class<?> arg0)
|
|
void |
setCursorName(String arg0)
Sets the cursorName attribute of the Satement object |
|
void |
setEscapeProcessing(boolean arg0)
Sets the escapeProcessing attribute of the Satement object |
|
void |
setFetchDirection(int arg0)
Sets the fetchDirection attribute of the Satement object |
|
void |
setFetchSize(int arg0)
Sets the fetchSize attribute of the Satement object |
|
void |
setMaxFieldSize(int arg0)
Sets the maxFieldSize attribute of the Statement object |
|
void |
setMaxRows(int arg0)
Sets the maxRows attribute of the Satement object |
|
void |
setPoolable(boolean arg0)
|
|
void |
setQueryTimeout(int arg0)
Sets the queryTimeout attribute of the Satement object |
|
|
unwrap(Class<T> arg0)
|
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Constructor Detail |
---|
public IntegrateStatement()
Method Detail |
---|
public void addBatch(String arg0) throws SQLException
addBatch
in interface Statement
SQLException
Statement.addBatch(String)
public void cancel() throws SQLException
cancel
in interface Statement
SQLException
Statement.cancel()
public void clearBatch() throws SQLException
clearBatch
in interface Statement
SQLException
Statement.clearBatch()
public void clearWarnings() throws SQLException
clearWarnings
in interface Statement
SQLException
Statement.clearWarnings()
public abstract void close() throws SQLException
Statement
object's database
and JDBC resources immediately instead of waiting for
this to happen when it is automatically closed.
It is generally good practice to release resources as soon as
you are finished with them to avoid tying up database
resources.
Calling the method close
on a Statement
object that is already closed has no effect.
Note: A Statement
object is automatically closed
when it is garbage collected. When a Statement
object is
closed, its current ResultSet
object, if one exists, is
also closed.
close
in interface Statement
SQLException
- if a database access error occurspublic abstract boolean execute(String arg0) throws SQLException
execute
in interface Statement
SQLException
Statement.execute(java.lang.String)
public boolean execute(String arg0, int arg1) throws SQLException
execute
in interface Statement
SQLException
Statement.execute(java.lang.String)
public boolean execute(String arg0, int[] arg1) throws SQLException
execute
in interface Statement
SQLException
Statement.execute(java.lang.String)
public boolean execute(String arg0, String[] arg1) throws SQLException
execute
in interface Statement
SQLException
Statement.execute(java.lang.String)
public int[] executeBatch() throws SQLException
executeBatch
in interface Statement
SQLException
Statement.executeBatch()
public abstract ResultSet executeQuery(String arg0) throws SQLException
executeQuery
in interface Statement
SQLException
Statement.executeQuery(java.lang.String)
public abstract int executeUpdate(String arg0) throws SQLException
executeUpdate
in interface Statement
SQLException
Statement.executeUpdate(java.lang.String)
public int executeUpdate(String arg0, int arg1) throws SQLException
executeUpdate
in interface Statement
SQLException
Statement.executeUpdate(java.lang.String)
public int executeUpdate(String arg0, int[] arg1) throws SQLException
executeUpdate
in interface Statement
SQLException
Statement.executeUpdate(java.lang.String)
public int executeUpdate(String arg0, String[] arg1) throws SQLException
executeUpdate
in interface Statement
SQLException
Statement.executeUpdate(java.lang.String)
public abstract Connection getConnection() throws SQLException
getConnection
in interface Statement
SQLException
- Description of Exceptionpublic int getFetchDirection() throws SQLException
getFetchDirection
in interface Statement
SQLException
- Description of Exceptionpublic int getFetchSize() throws SQLException
getFetchSize
in interface Statement
SQLException
- Description of Exceptionpublic ResultSet getGeneratedKeys() throws SQLException
getGeneratedKeys
in interface Statement
SQLException
Statement.getGeneratedKeys()
public int getMaxFieldSize() throws SQLException
getMaxFieldSize
in interface Statement
SQLException
- Description of Exceptionpublic int getMaxRows() throws SQLException
getMaxRows
in interface Statement
SQLException
- Description of Exceptionpublic boolean getMoreResults() throws SQLException
getMoreResults
in interface Statement
SQLException
- Description of Exceptionpublic boolean getMoreResults(int arg0) throws SQLException
getMoreResults
in interface Statement
SQLException
Statement.getMoreResults()
public int getQueryTimeout() throws SQLException
getQueryTimeout
in interface Statement
SQLException
- Description of Exceptionpublic ResultSet getResultSet() throws SQLException
getResultSet
in interface Statement
SQLException
- Description of Exceptionpublic int getResultSetConcurrency() throws SQLException
getResultSetConcurrency
in interface Statement
SQLException
- Description of Exceptionpublic int getResultSetHoldability() throws SQLException
getResultSetHoldability
in interface Statement
SQLException
Statement.getResultSetHoldability()
public int getResultSetType() throws SQLException
getResultSetType
in interface Statement
SQLException
- Description of Exceptionpublic int getUpdateCount() throws SQLException
getUpdateCount
in interface Statement
SQLException
- Description of Exceptionpublic SQLWarning getWarnings() throws SQLException
getWarnings
in interface Statement
SQLException
- Description of Exceptionpublic boolean isClosed() throws SQLException
isClosed
in interface Statement
SQLException
Statement.isClosed()
public boolean isPoolable() throws SQLException
isPoolable
in interface Statement
SQLException
Statement.isPoolable()
public void setCursorName(String arg0) throws SQLException
setCursorName
in interface Statement
arg0
- The new cursorName value
SQLException
- Description of Exceptionpublic void setEscapeProcessing(boolean arg0) throws SQLException
setEscapeProcessing
in interface Statement
arg0
- The new escapeProcessing value
SQLException
- Description of Exceptionpublic void setFetchDirection(int arg0) throws SQLException
setFetchDirection
in interface Statement
arg0
- The new fetchDirection value
SQLException
- Description of Exceptionpublic void setFetchSize(int arg0) throws SQLException
setFetchSize
in interface Statement
arg0
- The new fetchSize value
SQLException
- Description of Exceptionpublic void setMaxFieldSize(int arg0) throws SQLException
setMaxFieldSize
in interface Statement
arg0
- The new maxFieldSize value
SQLException
- Description of Exceptionpublic void setMaxRows(int arg0) throws SQLException
setMaxRows
in interface Statement
arg0
- The new maxRows value
SQLException
- Description of Exceptionpublic void setPoolable(boolean arg0) throws SQLException
setPoolable
in interface Statement
SQLException
Statement.isPoolable()
public void setQueryTimeout(int arg0) throws SQLException
setQueryTimeout
in interface Statement
arg0
- The new queryTimeout value
SQLException
- Description of Exceptionpublic boolean isWrapperFor(Class<?> arg0) throws SQLException
isWrapperFor
in interface Wrapper
SQLException
Wrapper.isWrapperFor(java.lang.Class)
public <T> T unwrap(Class<T> arg0) throws SQLException
unwrap
in interface Wrapper
SQLException
Wrapper.unwrap(java.lang.Class)
|
|||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES All Classes | ||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |