org.hsqldb.util

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.util 
org.hsqldb.util
Java Source File NameTypeComment
AppendableException.javaClass Allows additional messages to be appended.
CodeSwitcher.javaClass Modifies the source code to support different JDK or profile settings.
CommonSwing.javaClass
ConnectionDialog.javaClass
ConnectionDialogCommon.javaClass
ConnectionDialogSwing.javaClass
ConnectionSetting.javaClass ConnectionSetting represents the various parameters of a data source connection.
CSVWriter.javaClass helper class to write table data to a csv-file (comma separated values). the first line in file is a list of fieldnames, all following lines are data lines. a descptiontion of file format can be found on: http://www.wotsit.org/ usage: create a object using the constructor.
DataAccessPoint.javaClass
DataAccessPointException.javaClass
DatabaseManager.javaClass AWT Tool for manageing a JDBC database.

 Usage: java DatabaseManagerSwing [--options]
 where options include:
 --driver   jdbc driver class
 --url           jdbc url
 --user          username used for connection
 --password  password for this user
 --urlid        get connection info from RC file
 --rcfile        use instead of default (with urlid)
 --dir           default directory
 --script        reads from script file
 
Tue Apr 26 16:38:54 EDT 2005 Switched default switch method from "-switch" to "--switch" because "-switch" usage is ambiguous as used here.
DatabaseManagerCommon.javaClass
DatabaseManagerSwing.javaClass Swing Tool for managing a JDBC database.

 Usage: java DatabaseManagerSwing [--options]
 where options include:
 --driver   jdbc driver class
 --url           jdbc url
 --user          username used for connection
 --password  password for this user
 --dir           default directory
 --script        reads from script file
 --urlid        get connection info from RC file
 --rcfile        use instead of default (with urlid)
 --noexit              Don't exit JVM
 
Note that the sys-table switch will not work for Oracle, because Oracle does not categorize their system tables correctly in the JDBC Metadata.
FontDialogSwing.javaClass
Grid.javaClass
GridSwing.javaClass Simple table model to represent a grid of tuples.
HelperFactory.javaClass
HsqldbTransferHelper.javaClass
InformixTransferHelper.javaClass
JDBCTypes.javaClass
MainInvoker.javaClass Invokes the static main(String[]) method from each class specified.
McKoiTransferHelper.javaClass
OracleTransferHelper.javaClass
PostgresTransferHelper.javaClass
QueryTool.javaClass
RCData.javaClass All the info we need to connect up to a database.
RefCapablePropertyResourceBundle.javaClass Just like PropertyResourceBundle, except keys mapped to nothing in the properties file will load the final String value from a text file. The use case is where one wants to use a ResourceBundle for Strings, but some of the Strings are long-- too long to maintain in a Java .properties file. By using this class, you can put each such long String in its own separate file, yet all keys mapped to (non-empty) values in the .properties file will behave just like regular PropertyResourceBundle properties. In this documentation, I call these values read in atomically from other files referenced values, because the values are not directly in the .properties file, but are "referenced" in the .properties file by virtue of the empty value for the key. You use this class in the same way as you would traditionally use ResourceBundle:
 import org.hsqldb.util..RefCapablePropertyResourceBundle;
 ...
 RefCapablePropertyResourceBundle bundle =
 RefCapablePropertyResourceBundle.getBundle("subdir.xyz");
 System.out.println("Value for '1' = (" + bundle.getString("1") + ')');
 
Just like PropertyResourceBundle, the .properties file and the referenced files are read in from the classpath by a class loader, according to the normal ResourceBundle rules. To eliminate the need to prohibit the use of any strings in the .properties values, and to enforce consistency, you must use the following rules to when putting your referenced files into place.

REFERENCED FILE DIRECTORY is a directory named with the base name of the properties file, and in the same parent directory.

ScriptTool.javaClass Script tool - command line tool to read in sql script and execute it.
ShutdownServer.javaClass
SqlFile.javaClass Encapsulation of a sql text file like 'myscript.sql'. The ultimate goal is to run the execute() method to feed the SQL commands within the file to a jdbc connection. Some implementation comments and variable names use keywords based on the following definitions.
SqlServerTransferHelper.javaClass
SQLStatements.javaClass container for set of SQL statements New class based on Hypersonic SQL code.
SqlTool.javaClass Sql Tool.
SqlToolError.javaClass Exceptions thrown by the SqlTool system externally to SqlFile.
SqltoolRB.javaClass Resource Bundle for SqlTool and associated classes.
SqlToolSprayer.javaClass Sql Tool Sprayer.
TableSorter.javaClass TableSorter is a decorator for TableModels; adding sorting functionality to a supplied TableModel.
Traceable.javaInterface
Transfer.javaClass Utility program (or applet) for transferring tables between different databases via JDBC.
TransferCommon.javaClass
TransferDb.javaClass
TransferHelper.javaClass
TransferResultSet.javaClass
TransferSQLText.javaClass
TransferTable.javaClass
Tree.javaClass
ValidatingResourceBundle.javaClass Purpose of this class is to wrap a RefCapablePropertyResourceBundle to reliably detect any possible use of a missing property key as soon as this class is clinitted.
ZaurusChoice.javaClass
ZaurusComponent.javaInterface
ZaurusConnectionDialog.javaClass
ZaurusDatabaseManager.javaClass
ZaurusEditor.javaClass ZaurusEditor implements an search/input/edit form to search/view/update/insert table records.
author:
   ulrivo@users
version:
   1.0
version:
  


version:
   Starting on a search panel, one can choose a table from the actual
version:
   database.

ZaurusTableForm.javaClass
ZaurusTextField.javaClass
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.