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)

Method Index

 o cancel()
 o clearWarnings()
 o close()
 o execute(String)
 o executeQuery(String)
 o executeUpdate(String)
 o getMaxFieldSize()
 o getMaxRows()
 o getMoreCounts()
 o getMoreResults()
 o getQueryTimeout()
 o getResultSet()
 o getUpdateCount()
 o getWarnings()
 o setCursorName(String)
 o setEscapeProcessing(boolean)
 o setMaxFieldSize(int)
 o setMaxRows(int)
 o setQueryTimeout(int)

Methods

 o executeQuery
 public synchronized ResultSet executeQuery(String sql) throws SQLException
 o executeUpdate
 public int executeUpdate(String sql) throws SQLException
 o execute
 public boolean execute(String sql) throws SQLException
 o close
 public void close() throws SQLException
 o getResultSet
 public ResultSet getResultSet() throws SQLException
 o getUpdateCount
 public int getUpdateCount() throws SQLException
 o getMoreResults
 public boolean getMoreResults() throws SQLException
 o getMoreCounts
 public int getMoreCounts() throws SQLException
 o getMaxFieldSize
 public int getMaxFieldSize() throws SQLException
 o setMaxFieldSize
 public void setMaxFieldSize(int max) throws SQLException
 o getMaxRows
 public int getMaxRows() throws SQLException
 o setMaxRows
 public void setMaxRows(int max) throws SQLException
 o setEscapeProcessing
 public void setEscapeProcessing(boolean enable) throws SQLException
 o getQueryTimeout
 public int getQueryTimeout() throws SQLException
 o setQueryTimeout
 public void setQueryTimeout(int x) throws SQLException
 o cancel
 public void cancel()
 o getWarnings
 public final SQLWarning getWarnings() throws SQLException
 o clearWarnings
 public void clearWarnings() throws SQLException
 o setCursorName
 public void setCursorName(String unused) throws SQLException

All Packages  Class Hierarchy  This Package  Previous  Next  Index