oracle.toplink.essentials.queryframework

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 ORM » toplink » oracle.toplink.essentials.queryframework 
oracle.toplink.essentials.queryframework
Java Source File NameTypeComment
Call.javaInterface Call defines the interface used primarily by TopLink queries and query mechanisms to perform the necessary actions (read, insert, update, delete) on the data store. A Call can collaborate with an Accessor to perform its responsibilities.
ColumnResult.javaClass

Purpose: Concrete class to represent the ColumnResult structure as defined by the EJB 3.0 Persistence specification.

ComplexQueryResult.javaClass

Purpose: Used to return multiple sets of information from a query.

ConstructorReportItem.javaClass Purpose: An item specifying a class constructor method to be used in a ReportQuery's returned results.
DatabaseQuery.javaClass

Purpose: Abstract class for all database query objects. DatabaseQuery is a visible class to the TopLink user.

DataModifyQuery.javaClass

Purpose: Concrete class used for executing non selecting SQL strings.

DataReadQuery.javaClass

Purpose: Concrete class to perform read using raw SQL.

DeleteAllQuery.javaClass

Purpose: Query used to delete a collection of objects

Responsibilities:

  • Stores & retrieves the objects to delete.
DeleteObjectQuery.javaClass

Purpose: Used for deleting objects.

DirectReadQuery.javaClass

Purpose: Concrete class to perform a direct read.

Responsibilities: Used in conjunction with DirectCollectionMapping. This can be used to read a single column of data (i.e.

DoesExistQuery.javaClass

Purpose: This should only be used by the descriptor, this should not be executed directly. Used to determine if an object resides on the database. DoesExistQuery is normally used to determine whether to make an update or insert statement when writing an object.

Responsibilities: Verify the existence of an object.

EJBQLCall.javaClass Purpose: Used as an abstraction of a database invocation.
EJBQLPlaceHolderQuery.javaClass
EntityResult.javaClass

Purpose: Concrete class to represent the EntityResult structure as defined by the EJB 3.0 Persistence specification.

FetchGroup.javaClass

Purpose: A fetch group is a performance enhancement that allows a group of attributes of an object to be loaded on demand, which means that the data for an attribute might not loaded from the underlying data source until an explicit access call for the attribute first occurs.

FetchGroupTracker.javaInterface

Purpose: The fetch group tracker interface provides a set of APIs which the domain object must implement, in order to take advantage of the TopLink fetch group performance enhancement feature.

FieldResult.javaClass

Purpose: Concrete class to represent the FieldResult structure as defined by the EJB 3.0 Persistence specification.

InMemoryQueryIndirectionPolicy.javaClass

Purpose: Used to provide the user with a means of contoling the behaviour of in memory queries that access un-instantiated indirection in the query..

Description: This class contains a state variable that is used to determine what a query should do when accesing un-instantiated indirection.

InsertObjectQuery.javaClass

Purpose: Used for inserting new objects into the database.

ModifyAllQuery.javaClass PUBLIC: Query used to perform a bulk delete using TopLink's expression framework.
ModifyQuery.javaClass

Purpose: Abstract class for all modify queries.

ObjectBuildingQuery.javaClass

Purpose: Abstract class for all read queries that build objects and potentially manipulate the TopLink cache.

ObjectLevelModifyQuery.javaClass

Purpose: Abstract class for all object modify queries.

ObjectLevelReadQuery.javaClass

Purpose: Abstract class for all read queries using objects.

ReadAllQuery.javaClass set

Purpose: Concrete class for all read queries involving a collection of objects.

ReadObjectQuery.javaClass

Purpose: Concrete class for all read queries involving a single object.

ReadQuery.javaClass

Purpose: Abstract class for all read queries.

ReportQuery.javaClass Purpose: Query for information about a set of objects instead of the objects themselves. This supports select single attributes, nested attributes, aggregation functions and group bys.

Attribute Types:

  1. addAttribute("directQueryKey") is a short cut method to add an attribute with the same name as its corresponding direct query key.
  2. addAttribute("attributeName", expBuilder.get("oneToOneMapping").get("directQueryKey")) is the full approach for get values through joined 1:1 relationships.
  3. addAttribute("attributeName", expBuilder.getField("TABLE.FIELD")) allows the addition of raw values or values which were not mapped in the object model directly (i.e.
ReportQueryResult.javaClass Purpose: A single row (type) result for a ReportQuery

Description: Represents a single row of attribute values (converted using mapping) for a ReportQuery.

ResultSetMappingQuery.javaClass

Purpose: Concrete class to perform read using raw SQL and the SQLResultSetMapping.

Responsibilities: Execute a selecting raw SQL string. Returns a List of results.

SQLCall.javaClass Purpose: Used as an abstraction of an SQL call.
SQLResult.javaClass
SQLResultSetMapping.javaClass

Purpose: Concrete class to represent the SQLResultSetMapping structure as defined by the EJB 3.0 Persistence specification.

UpdateAllQuery.javaClass PUBLIC: A Query Class used to perform a bulk update using TopLink's expression framework. This class is provided to help optimize performance.
UpdateObjectQuery.javaClass

Purpose: Used for updating existing objects into the database.

ValueReadQuery.javaClass

Purpose: Concrete class to perform a read of a single data value.

Responsibilities: Used in conjunction with CursoredStream size and Platform getSequence. This can be used to read a single data value (i.e.

WriteObjectQuery.javaClass

Purpose: Used for inserting or updating objects WriteObjectQuery determines whether to perform a insert or an update on the database.

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