org.hsqldb

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » Database DBMS » hsql » org.hsqldb 
org.hsqldb
Java Source File NameTypeComment
BaseMemoryNode.javaClass Common MEMORY and TEXT table node implementation.
BaseTable.javaClass The abstract base of all HSQLDB table implementations.
CachedDataRow.javaClass Implementation of rows for tables with memory resident indexes and disk-based data, such as TEXT tables.
CachedRow.javaClass In-memory representation of a disk-based database row object with methods for serialization and de-serialization.
Collation.javaClass Implementation of collation support for all CHAR and VARCHAR data.
Column.javaClass
CompiledStatement.javaClass A simple structure class for holding the products of statement compilation for later execution.
CompiledStatementExecutor.javaClass Provides execution of CompiledStatement objects.
CompiledStatementManager.javaClass This class manages the reuse of CompiledStatement objects for prepared statements for a Database instance.

A compiled statement is registered by a session to be managed.

Constraint.javaClass
ConstraintCore.javaClass This class consists of the data structure for a Constraint.
Database.javaClass Database is the root class for HSQL Database Engine database.
DatabaseCommandInterpreter.javaClass Provides SQL Interpreter services relative to a Session and its Database.
DatabaseInformation.javaClass Base class for system tables.
DatabaseInformationFull.javaClass Extends DatabaseInformationMain to provide additional system table support.
DatabaseInformationMain.javaClass Produces a collection of tables that form the system data dictionary.
DatabaseManager.javaClass Handles initial attempts to connect to HSQLDB databases within the JVM (or a classloader within the JVM).
DatabaseObjectNames.javaClass Transitional container for object names that are unique across the DB instance but are owned by different DB objects.
DatabaseScript.javaClass Script generation.
DatabaseURL.javaClass
DINameSpace.javaClass Provides catalog and schema related definitions and functionality.
DIProcedureInfo.javaClass Provides information about HSQLDB SQL-invoked routines and SQL functions.
DiskNode.javaClass
DITableInfo.javaClass Provides extended information about HSQLDB tables and their columns/indices.
DITypeInfo.javaClass Provides information intrinsic to each standard data type known to HSQLDB.
Expression.javaClass
Function.javaClass Provides services to evaluate SQL function and stored procedure calls, by invoking Java methods.
GrantConstants.javaInterface The constants for grants.
Grantee.javaClass A Grantee Object holds the name, access and administrative rights for a particular grantee.

It supplies the methods used to grant, revoke, test and check a grantee's access rights to other database objects. It also holds a reference to the common PUBLIC User Object, which represent the special user refered to in GRANT ...

GranteeManager.javaClass Contains a set of Grantee objects, and supports operations for creating, finding, modifying and deleting Grantee objects for a Database; plus Administrative privileges.
GroupedResult.javaClass This class is used for grouping select results, especially for select statements that include group by clause and nested aggregate functions. It is used by the Select class regardless the existence of group by clause.

When a group by clause is defined, a ResultGroup is used to hold all column values and AggregatingValues for each group.

HSQLClientConnection.javaClass Base remote session proxy implementation.
HsqlDateTime.javaClass collection of static methods to convert Date, Time and Timestamp strings into corresponding Java objects.
HsqlException.javaClass Class encapsulating all exceptions that can be thrown within the engine.
HsqlInternalException.javaClass A subclass of HsqlException that can be caught while processing queries and acted upon.
HsqlNameManager.javaClass Provides Name Management for SQL objects.
HsqlServerFactory.javaClass
HsqlSocketFactory.javaClass Base class for producing the Socket objects used by HSQLDB.
HsqlSocketFactorySecure.javaClass The default secure socket factory implementation.
HsqlSocketRequestHandler.javaInterface
HTTPClientConnection.javaClass HTTP protocol session proxy implementation.
Index.javaClass Implementation of an AVL tree with parent pointers in nodes.
jdbcDriver.javaClass Each JDBC driver must supply a class that implements the Driver interface.
Library.javaClass Provides the HSQLDB implementation of standard Open Group SQL CLI Extended Scalar Functions and other public HSQLDB SQL functions.

All methods here that have a Connection parameter are dummies and should not be called from user supplied Java procedure or trigger code.

Like.javaClass Reusable object for processing LIKE queries.
Log.javaClass This class is responsible for most file handling.
MemoryNode.javaClass Memory table node implementation.
Node.javaClass The parent for all AVL node implementations, features factory methods for its subclasses.
NumberSequence.javaClass Maintains a sequence of numbers.
Parser.javaClass Responsible for parsing non-DDL statements.
PointerNode.javaClass Text table node implementation.

Nodes for the AVL tree are all built and kept in memory while the actual row data is accessed via TextCache from disk.

This differs from MemoryNode by maintaining an integral pointer for the Row data instead of a Java reference.

Record.javaClass A node in a Result linked list.
Result.javaClass The primary unit of comunication between Connection, Server and Session objects. An HSQLDB Result object encapsulates all requests (such as to alter or query session settings, to allocate and execute statements, etc.) and all responses (such as exception indications, update counts, result sets and result set metadata).
ResultBase.javaClass
ResultConstants.javaInterface An enumeration of the request and response mode values used to communicate between the client and the engine when sending Result objects back and forth.
Row.javaClass
SchemaManager.javaClass
Select.javaClass The compiled representation of an SQL SELECT.
SequenceManager.javaClass Manages SEQUENCE objects for a Database instance.
Server.javaClass The HSQLDB HSQL protocol network database server.
ServerConfiguration.javaClass Assists with Server and WebServer configuration tasks.
ServerConnection.javaClass All ServerConnection objects are listed in a Set in server and removed by this class when closed.

When the database or server is shutdown, the signalClose() method is called for all current ServerConnection instances.

ServerConstants.javaInterface
Servlet.javaClass Servlet can act as an interface between the client and the database for the the client / server mode of HSQL Database Engine.
Session.javaClass Implementation of a user session with the database.
SessionInterface.javaInterface Interface to Session and its remote proxy objects.
SessionManager.javaClass Container that maintains a map of session id's to Session objects.
SetFunction.javaClass Implementation of SQL set functions (currently only aggregate functions).
SubQuery.javaClass Represents an SQL view or anonymous subquery (inline virtual table descriptor) nested within an SQL statement.
Table.javaClass Holds the data structures and methods for creation of a database table.
TableFilter.javaClass This class iterates over table rows to select the rows that fulfil join or other conditions.
TableWorks.javaClass
TextTable.javaClass Subclass of Table to handle TEXT data source.
Token.javaClass Defines and enumerates reserved and non-reserved SQL keywords.
Tokenizer.javaClass Provides the ability to tokenize SQL character sequences.
Trace.javaClass
Transaction.javaClass Represents a single row table operation.
TransactionManager.javaClass
Trigger.javaInterface The interface an HSQLDB TRIGGER must implement.
TriggerDef.javaClass Represents an HSQLDB Trigger definition.
Types.javaClass Defines the constants that are used to identify SQL types for HSQLDB JDBC inteface type reporting.
User.javaClass A User Object holds the name, password for a particular database user.

Enhanced in successive versions of HSQLDB.

UserManager.javaClass Manages the User objects for a Database instance. The special users PUBLIC_USER_NAME and SYSTEM_AUTHORIZATION_NAME are created and managed here.
View.javaClass Represents an SQL VIEW based on a SELECT statement.
WebServer.javaClass The HSQLDB HTTP protocol network database server.
WebServerConnection.javaClass A web server connection is a transient object that lasts for the duration of the SQL call and its result.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.