com.salmonllc.sql

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 » J2EE » Sofia » com.salmonllc.sql 
com.salmonllc.sql
This package contains classes that allow the framework to interact with relational databases and other data sources.
Java Source File NameTypeComment
AutoRetrieveCriteria.javaClass This class is used to store information used to decide how to autoretrieve a datastore created inside a JSP page.
Base64Encoder.javaClass Encodes a String into base64, used by the proxy datastore when it has to go through a firewall.
BeanDataStore.javaClass This class provides an interface between standard java beans and the rest of the framework.
This allows EJBs or other Java Beans to be bound to GUI components so their values can be displayed and manipulated in pages.
This class won't automatically retrieve data as the standard datastore does.
ColumnDefinition.javaClass
DataDictionary.javaClass
DataPipe.javaClass
DataSourceIn.javaInterface This interface should be implemented for DataStores that use non standard data sources to retrieve their data.
DataSourceOut.javaInterface This interface should be implemented for DataStores that use non standard data sources to retrieve their data.
DataStore.javaClass This class provides a storage buffer for data in SQL ResultSets that allow for retreves, inserts updates and deletes.
DataStoreBuffer.javaClass This class provides a storage buffer for data in the form of rows and column.
DataStoreEvaluator.javaClass This type is used to evaluate java-like expressions using rows in a DataBuffer. The class needs to be passed a String containing the expression that will be used.
DataStoreException.javaClass This Exception is thrown by methods in the DataStore / DataStore Buffer class when an error occurs.
DataStoreExpression.javaInterface This interface is used to create hard coded expressions for a data store evaluator.
DataStoreInterface.javaInterface
DataStoreProxy.javaClass This class provides a storage buffer for data in SQL ResultSets for applets.
DataStoreQBEInterface.javaInterface
DataStoreRow.javaClass This class encapsulates one row in a DataStore Buffer.
DataType.javaClass
DB2SalvageException.javaClass Thin wrapper for DB2 "SqlException" and "DB2Sqlca", to make it look like a real Exception with a working getMessage() that presents the almost-human-readable string hidden in the Sqlca (what does "CA" stand for, anyway?) instead of the normal random garbage that you get from a DB2 SQLException, like "SQLCode -321, SqlState 32891, SqlErrMc null".
DBConnection.javaClass This class abstracts and simplifies the process of getting database connections from connection pools and connection managers, provides some transaction support as well as a wrapper for the java.sql.Connection class. The constructor for this class is private.
DBConnectionList.javaClass This class represents a list of database connections sharing a common specification.
DBStatement.javaClass This class serves as a wrapper around the standard java.sql.Statement.
DirtyDataException.javaClass
DSColumnDescriptor.javaClass This class is public as an implementation detail.
DSDataRow.javaClass This class should not be used outside the framework.
DSDataSourceANSISQL92.javaClass DataStore driver for Ansi SQL 92 databases.
DSDataSourceDB2.javaClass
DSDataSourceDB2400.javaClass
DSDataSourceDB2MVS.javaClass This type was created in VisualAge.
DSDataSourceDB2VSE.javaClass This type was created in VisualAge.
DSDataSourceFireBird.javaClass This type was created in VisualAge.
DSDataSourceIngres.javaClass
DSDataSourceJDBC.javaClass This type was created in VisualAge.
DSDataSourceMSSQL.javaClass This type was created in VisualAge.
DSDataSourceMySql.javaClass This type was created in VisualAge.
DSDataSourceOracle.javaClass This type was created in VisualAge.
DSDataSourcePostGres.javaClass This type was created in VisualAge.
DSDataSourceProxy.javaClass This type was created in VisualAge.
DSDataSourceSybase.javaClass This type was created in VisualAge.
DSDataStoreDescriptor.javaClass This class is public as an implementation detail.
DSJoinDescriptor.javaClass This class is public as an implementation detail.
DSQuickSort.javaClass This class is public as an implementation detail.
DSTableAliasDescriptor.javaClass This class is public as an implementation detail.
IntegrityChecker.javaClass This class performs referential integrity checking functions even if the underlying database doesn't. Each IntegrityChecker object should correspond to a single DataStore.
IntegrityException.javaClass Indicates a referential integrity problem has occured with the database.
IntegrityMessage.javaClass
ModelChangedEvent.javaClass Event object that gets passed to ModelChangedListeners when data in a model changes.
ModelChangedListener.javaInterface
PreparedStatementParms.javaClass This class is used to set parameters to pass to a SQL prepared statement.
ProxyBeanDataStoreAdaptor.javaClass This class is used to combine the functionality of a DataStoreProxy with a BanDataStore.
QBEBuilder.javaClass This class is used to to build Query By Example filters for datastore retrieves.
QBECriteriaBuilder.javaClass
QBEEvent.javaClass
QBEListener.javaInterface
Remotable.javaInterface Implement this method for any DataStore that you want to expose remotely via the a ProxyDataStore.
RemoteDataStore.javaClass This class should be extended for each data store that will be retrieved remotely via the DataServer servlet.
SQLPreviewEvent.javaClass This object will be created and passed to every SQLPreview method in registered SQLPreviewListener objects.
SQLPreviewListener.javaInterface This interface must be implemented by every class that will listen to SQL Preview events from a Datastore.
StoredProcedureParms.javaClass This class is used to set parameters to pass to a SQL stored procedure.
ValidationRule.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.