Project:dool
Class List Class Hierarchy
Summary: Ctors Methods

Module dool.sql.Statement

Interface Statement

Extend interfaces:

interface Statement



Methods Summary
String errorMessage()
          
int prepare(char sql)
          Prepares one sql statment - multiple are not supported.
int prepare(String sql)
          Prepares one sql statment - multiple are not supported.
int execute(char statment)
          executes and sql statement without returning a result set
int execute(String statment)
          executes and sql statement without returning a result set
void begin()
          
void commit()
          
void rollback()
          
ResultSet getResultSet(char statement)
          executes and get the result set
ResultSet getResultSet(String statement)
          executes and get the result set
int finish()
          close the current connection statement


String errorMessage()

int prepare(char[] sql)
/** * Prepares one sql statment - multiple are not supported. */
int prepare(String sql)
/** * Prepares one sql statment - multiple are not supported. */
int execute(char[] statment)
/** * executes and sql statement without returning a result set */
int execute(String statment)
/** * executes and sql statement without returning a result set */
void begin()

void commit()

void rollback()

ResultSet getResultSet(char[] statement)
/** * executes and get the result set */
ResultSet getResultSet(String statement)
/** * executes and get the result set */
int finish()
/** * close the current connection statement */