org.odmg

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 » Ozone 1.1 » org.odmg 
org.odmg
Provides interfaces and definitions of the ODMG 3.0 object database API. ozone implements a subset of this API. See {@link org.ozoneDB.odmg} for more details about the ozone implementation.
Java Source File NameTypeComment
ClassNotPersistenceCapableException.javaClass This exception is thrown when the implementation cannot make an object persistent because of the type of the object.
DArray.javaInterface The interface that defines the operations of an ODMG array.
Database.javaInterface The interface for interacting with an ODMG database. Databases must be opened before starting any transactions that use the database and closed after ending these transactions.

A database application generally begins processing by accessing one or more critical objects and proceeding from there.

DatabaseClosedException.javaClass This exception is thrown when an attempt is made to call a method on a Database that has been closed or has not been opened.
DatabaseIsReadOnlyException.javaClass This exception is thrown when a call has been made that modifies a database that is open in read-only mode.
DatabaseNotFoundException.javaClass This exception is thrown when attempting to open a database that does not exist.
DatabaseOpenException.javaClass This exception is thrown when attempting to open a database that is already open.
DBag.javaInterface This interface defines the operations associated with an ODMG bag collection.
DCollection.javaInterface The base interface for all ODMG collections. The ODMG collections are based on JavaSoft’s collection interfaces. All of the operations defined by the JavaSoft Collection interface are supported by an ODMG implementation of DCollection; the exception UnsupportedOperationException is not thrown when a call is made to any of the Collection methods.

DCollection contains methods used to perform queries on the collection. The OQL query predicate is given as a string with the syntax of the where clause of OQL.

DList.javaInterface The ODMG List collection. A DList collection is an ordered collection that provides efficient insertion and removal of elements at arbitrary positions in the list, but it also supports indexed access.
DMap.javaInterface The ODMG Map collection interface.
DSet.javaInterface The ODMG Set collection interface. A DSet object is an unordered collection that does not support multiple elements with the same value.
Implementation.javaInterface The factory interface for a particular ODMG implementation.
LockNotGrantedException.javaClass This exception is thrown if a lock could not be granted on an object.
NotImplementedException.javaClass This exception is thrown when an implementation does not support an operation.
ObjectDeletedException.javaClass This exception is thrown when accessing an object that was deleted.
ObjectNameNotFoundException.javaClass An attempt to get a object via its name using Database.lookup and the name is not associated with an object in the database.
ObjectNameNotUniqueException.javaClass This exception is thrown when attempting to bind a name to an object when the name is already bound to another object.
ObjectNotPersistentException.javaClass This exception is thrown when deleting an object that is not persistent.
ODMGException.javaClass This is the base class for all exceptions thrown by an ODMG implementation.
ODMGRuntimeException.javaClass This is the base class for all RuntimeExceptions thrown by an ODMG implementation.
OQLQuery.javaInterface The interface to an OQL query object.
QueryException.javaClass This is the base class for all exceptions associated with queries.
QueryInvalidException.javaClass This exception is thrown if the query is not a valid OQL query.
QueryParameterCountInvalidException.javaClass This exception is thrown when the number of bound parameters for a query does not match the number of placeholders.
QueryParameterTypeInvalidException.javaClass This exception is thrown when the type of a query parameter is not compatible with the expected type.
Transaction.javaInterface This interfaces provides the operations necessary to perform database transactions. All access, creation, and modification of persistent objects and their fields must be done within a transaction.
TransactionAbortedException.javaClass This exception is thrown when the database asynchronously and explicitly aborts the user's transaction due to some failure, the user's data is reset just as if the user had directly called Transaction.abort.
TransactionInProgressException.javaClass This exception is thrown when a call has been made to a method that should not be called when a transaction is in progress.
TransactionNotInProgressException.javaClass This exception is thrown when attempting to perform an operation that must be performed when there is a transaction is in progress, but no such transaction is in progress.
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.