All Packages Class Hierarchy This Package Previous Next Index
Class com.imaginary.sql.msql.MsqlStatement
java.lang.Object
|
+----com.imaginary.sql.msql.MsqlStatement
- public class MsqlStatement
- extends Object
- implements Statement
The MsqlStatement class implements the JDBC Statement interface.
This class represents any SQL statement.
Last modified $Date: 1999/01/22 05:33:45 $
- Version:
- $Revision: 1.1.2.1.2.1 $
- Author:
- George Reese (borg@imaginary.com)
-
cancel()
-
-
clearWarnings()
-
-
close()
-
-
execute(String)
-
-
executeQuery(String)
-
-
executeUpdate(String)
-
-
getMaxFieldSize()
-
-
getMaxRows()
-
-
getMoreCounts()
-
-
getMoreResults()
-
-
getQueryTimeout()
-
-
getResultSet()
-
-
getUpdateCount()
-
-
getWarnings()
-
-
setCursorName(String)
-
-
setEscapeProcessing(boolean)
-
-
setMaxFieldSize(int)
-
-
setMaxRows(int)
-
-
setQueryTimeout(int)
-
executeQuery
public synchronized ResultSet executeQuery(String sql) throws SQLException
executeUpdate
public int executeUpdate(String sql) throws SQLException
execute
public boolean execute(String sql) throws SQLException
close
public void close() throws SQLException
getResultSet
public ResultSet getResultSet() throws SQLException
getUpdateCount
public int getUpdateCount() throws SQLException
getMoreResults
public boolean getMoreResults() throws SQLException
getMoreCounts
public int getMoreCounts() throws SQLException
getMaxFieldSize
public int getMaxFieldSize() throws SQLException
setMaxFieldSize
public void setMaxFieldSize(int max) throws SQLException
getMaxRows
public int getMaxRows() throws SQLException
setMaxRows
public void setMaxRows(int max) throws SQLException
setEscapeProcessing
public void setEscapeProcessing(boolean enable) throws SQLException
getQueryTimeout
public int getQueryTimeout() throws SQLException
setQueryTimeout
public void setQueryTimeout(int x) throws SQLException
cancel
public void cancel()
getWarnings
public final SQLWarning getWarnings() throws SQLException
clearWarnings
public void clearWarnings() throws SQLException
setCursorName
public void setCursorName(String unused) throws SQLException
All Packages Class Hierarchy This Package Previous Next Index