org.isqlviewer.sql |
Classes that wrap and or support all the JDBC 3.x functions for iSQL-Viewer.
|
Java Source File Name | Type | Comment |
ByteArrayBlob.java | Class | Utility Implementation for dealing with BLOB objects in memory.
This is very easy implementation of a BLOB using the ByteArrayInputStream. |
ByteArrayClob.java | Class | Utility Implementation for dealing with CLOB objects in memory.
This is very easy implementation of a CLOB using the StringBuffer. |
CallableStatementWrapper.java | Class | TODO Add CallableStatementWrapper Overview JavaDoc.
author: Mark A. |
ConnectionProfile.java | Class | Connection profile to control some statement and connection behavior with the JdbcService class.
This is a somewhat typical bean class, with getters/setters for the respective parameters. |
ConnectionWrapper.java | Class | TODO Add ConnectionWrapper Overview JavaDoc.
author: Mark A. |
DatabaseMetadataWrapper.java | Class | TODO Add DatabaseMetadataWrapper Overview JavaDoc.
author: Mark A. |
JdbcService.java | Class | Class that represents the connection to the database provider.
author: Mark A. |
JdbcUtilities.java | Class | Utility class for dealing with JDBC oriented tasks.
None of the methods that deal with ResultSets will actually close the ResultSet when completed, a call to the method
first is called before and after each method is finished executing the defined function.
A small note about methods that use a the ResultSetViewer object as a parameter to the method is that if the
ResultSetViewer is null and an SQLException occurs an attempt will be made to add the respecting exception as a
warning to the given ResultSet object. |
PlatformRegistrar.java | Interface | Native/Platform hook for providing registration information for iSQL-Viewer to the connection.
This is generally how the application identifies it's session with the database. |
PreparedStatementWrapper.java | Class | TODO Add WrappedPreparedStatement Overview JavaDoc.
author: Mark A. |
RegistrarFactory.java | Class | Factory class for providing mappings of fully qualified class names to specific PlatformRegistrar instances.
Instaces of this class will inspect a file called 'registrar.mappings' in the 'user.dir' of the Java runtime. |
ResultSetRenderer.java | Interface | Protocol for defining a client that can render results from an JDBC command execution.
author: Mark A. |
ResultSetWrapper.java | Class | TODO Add ResultSetWrapper Overview JavaDoc.
author: Mark A. |
ServiceType.java | enum | Types of JDBC services that can be defined.
Typically a shared service will be a service that is pre-configured for iSQL-Viewer and all a user needs is the URL
and name of the service to get started with a shared service.
If the service is private or local the service must be fully configured by the user.
author: Mark A. |
StatementWrapper.java | Class | Wrapper class for generic statements produced by the underlying connection object.
author: Mark A. |