com.internetcds.jdbc.tds |
|
Java Source File Name | Type | Comment |
CallableStatement_2_0.java | Class | |
CallableStatement_base.java | Class | CallableStatement is used to execute SQL stored procedures.
JDBC provides a stored procedure SQL escape that allows stored
procedures to be called in a standard way for all RDBMS's. |
CancelController.java | Class | This class provides support for canceling queries. |
Column.java | Class | |
Columns.java | Class | Information about the columns in a result set. |
ConnectionHelper.java | Interface | |
Connection_2_0.java | Class | |
Connection_base.java | Class | |
Constructors.java | Class | |
Context.java | Class | stores context information that Tds.processSubPacket() might
need to process a packet. |
DatabaseMetaData.java | Class | This class provides information about the database as a whole.
Many of the methods here return lists of information in ResultSets.
You can use the normal ResultSet methods such as getString and getInt
to retrieve the data from these ResultSets. |
Driver.java | Class | The Java SQL framework allows for multiple database drivers.
Each driver should supply a class that implements
the Driver interface.
The DriverManager will try to load as many drivers as it can
find and then for any given connection request, it will ask each
driver in turn to try to connect to the target URL.
It is strongly recommended that each Driver class should be
small and standalone so that the Driver class can be loaded and
queried without bringing in vast quantities of supporting code.
When a Driver class is loaded, it should create an instance of
itself and register it with the DriverManager. |
DriverVersion.java | Class | version number of this driver. |
EncodingHelper.java | Class | Helper class to handle server character set conversion. |
EscapeProcessor.java | Class | |
MSSqlServerEscapeProcessor.java | Class | |
PacketColumnInfoResult.java | Class | |
PacketColumnNamesResult.java | Class | |
PacketColumnOrderResult.java | Class | |
PacketControlResult.java | Class | |
PacketDoneInProcResult.java | Class | |
PacketEndTokenResult.java | Class | |
PacketErrorResult.java | Class | |
PacketMsgResult.java | Class | |
PacketResult.java | Class | |
PacketRetStatResult.java | Class | |
PacketRowResult.java | Class | encapsulate the information from one row of a result set. |
PacketTabNameResult.java | Class | |
PacketUnknown.java | Class | |
ParameterListItem.java | Class | |
ParameterUtils.java | Class | |
PreparedStatementHelper.java | Interface | |
PreparedStatement_2_0.java | Class | |
PreparedStatement_base.java | Class | A SQL statement is pre-compiled and stored in a
PreparedStatement object. |
Procedure.java | Class | |
ResultSetMetaData.java | Class | A ResultSetMetaData object can be used to find out about the types
and properties of the columns in a ResultSet. |
ResultSet_2_0.java | Class | |
ResultSet_base.java | Class | A ResultSet provides access to a table of data generated by
executing a Statement. |
SqlMessage.java | Class | |
SQLWarningChain.java | Class | Helper class to redruce duplicated code. |
Statement.java | Class | |
SybaseDriver.java | Class | |
SybaseEscapeProcessor.java | Class | |
Tds.java | Class | Cancel the current SQL if the timeout expires. |
TdsAsciiInputStream.java | Class | Extend the java.io.InputStream class for the TDS driver.
This class is used the the getAsciiStream
of the ResultSet class.
The current implementation reads the entire column of data into a
String. |
TdsComm.java | Class | Handle the communications for a Tds instance. |
TdsConfused.java | Class | |
TdsDefinitions.java | Interface | |
TdsException.java | Class | base class for exceptions related to the Tds class. |
TdsNotImplemented.java | Class | exception raised by methods that aren't implemented. |
TdsUnknownPacketSubType.java | Class | |
TdsUnknownPacketType.java | Class | |
TdsUtil.java | Class | |
UniqueId.java | Class | return a monotonically increasing number.
This class provides a thread safe way of generating unique
numbers. |