org.apache.derby.impl.tools.ij |
|
Java Source File Name | Type | Comment |
AsyncStatement.java | Class | |
AttributeHolder.java | Class | |
CharStream.java | Interface | This interface describes a character stream that maintains line and
column number positions of the characters. |
ConnectionEnv.java | Class | |
ij.java | Class | This parser works on a statement-at-a-time basis.
It maintains a connection environment that is
set by the caller and contains a list of
connections for the current thread/ij session.
Multi-user frameworks that use this parser
tend to maintain multiple connectionEnv's and
pass in the current one to set ij up.
A connectionEnv has a default connection in use,
and the ij connect/set connection/disconnect commands
are used to change the current connection.
Each connection has associated with it a list
of prepared statements and cursors, created by
the ij prepare and get cursor statements and
manipulated by additional ij statements.
To enable multiple display modes, this parser will
not output anything, but will return
objects that the caller can then display.
This means the caller is responsible for displaying
thrown exceptions and also SQLWarnings. |
ijConnectionResult.java | Class | |
ijConstants.java | Interface | |
ijException.java | Class | ijException is used to get messages from the ij parser to
the main ij loop. |
ijExceptionResult.java | Class | This is an impl for just returning errors from
JDBC statements. |
ijFatalException.java | Class | |
ijMultiResult.java | Class | This is an impl for a statement execution; the result
is either an update count or result set depending
on what was executed. |
ijResult.java | Interface | This is a wrapper for results coming out of the
ij parser. |
ijResultImpl.java | Class | This is an empty impl for reuse of code. |
ijResultSetResult.java | Class | This impl is intended to be used with a resultset,
where the execution of the statement is already complete. |
ijRowResult.java | Class | This is an impl for when 1 row of a result set is
the intended use of it. |
ijStatementResult.java | Class | This is an impl for a statement execution; the result
is either an update count or result set depending
on what was executed. |
ijTokenException.java | Class | |
ijTokenManager.java | Class | |
ijVectorResult.java | Class | This is an impl for a simple Vector of strings. |
ijWarningResult.java | Class | This is an impl for just returning warnings from
JDBC objects we don't want the caller to touch. |
Main.java | Class | This is the controller for ij. |
Main14.java | Class | This is the controller for the JDBC3.0 version
of ij. |
mtGrammar.java | Class | |
mtGrammarConstants.java | Interface | |
mtGrammarTokenManager.java | Class | |
mtTestCase.java | Class | |
mtTester.java | Class | mtTester grabs test and runs them forever. |
mtTestSuite.java | Class | |
mtTime.java | Class | |
ParseException.java | Class | This exception is thrown when parse errors are encountered. |
Session.java | Class | Session holds the objects local to a particular database session,
which starts with a connection and is all other JDBC
stuff used on that connection, along with some ij state
that is connection-based as well. |
SimpleCharStream.java | Class | An implementation of interface CharStream, where the stream is assumed to
contain only ASCII characters (without unicode processing). |
StatementFinder.java | Class | StatementGrabber looks through an input stream for
the next JSQL statement. |
Token.java | Class | Describes the input token stream. |
TokenMgrError.java | Class | |
UCode_CharStream.java | Class | An implementation of interface CharStream, where the stream is assumed to
contain only Unicode characters. |
util.java | Class | Methods used to control setup for apps as
well as display some internal ij structures. |
utilMain.java | Class | This class is utilities specific to the two ij Main's. |
utilMain14.java | Class | This class is utilities specific to the two ij Main's. |
xaAbstractHelper.java | Interface | |
xaHelper.java | Class | |