Java Doc for StatementManagerIF.java in  » Database-ORM » db-ojb » org » apache » ojb » broker » accesslayer » Java Source Code / Java DocumentationJava Source Code and Java Documentation

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 » db ojb » org.apache.ojb.broker.accesslayer 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


org.apache.ojb.broker.accesslayer.StatementManagerIF

All known Subclasses:   org.apache.ojb.broker.accesslayer.StatementManager,
StatementManagerIF
public interface StatementManagerIF (Code)

version:
   $Id: StatementManagerIF.java,v 1.10.2.3 2005/12/21 22:22:58 tomdz Exp $


Field Summary
 intFETCH_SIZE_NOT_APPLICABLE
     fetchSize hint marking that setting fetch size for current statement is N/A.
 intFETCH_SIZE_NOT_EXPLICITLY_SET
     fetchSize hint marking that there is no statement-level explicit override.


Method Summary
 voidbindDelete(PreparedStatement stmt, Identity oid, ClassDescriptor cld)
     Binds the Identities Primary key values to the statement.
 voidbindDelete(PreparedStatement stmt, ClassDescriptor cld, Object obj)
    
 voidbindInsert(PreparedStatement stmt, ClassDescriptor cld, Object obj)
    
 voidbindSelect(PreparedStatement stmt, Identity oid, ClassDescriptor cld, boolean callableStmt)
    
 intbindStatement(PreparedStatement stmt, Query query, ClassDescriptor cld, int param)
    
 voidbindUpdate(PreparedStatement stmt, ClassDescriptor cld, Object obj)
    
 intbindValues(PreparedStatement stmt, ValueContainer[] valueContainer, int index)
    
public  voidcloseResources(Statement stmt, ResultSet rs)
    
 PreparedStatementgetDeleteStatement(ClassDescriptor cds)
    
 StatementgetGenericStatement(ClassDescriptor cds, boolean scrollable)
    
 PreparedStatementgetInsertStatement(ClassDescriptor cds)
    
 PreparedStatementgetPreparedStatement(ClassDescriptor cds, String sql, boolean scrollable, int explicitFetchSizeHint, boolean callableStmt)
     Return a PreparedStatement for selecting against the given ClassDescriptor.
 PreparedStatementgetSelectByPKStatement(ClassDescriptor cds)
    
 PreparedStatementgetUpdateStatement(ClassDescriptor cds)
    

Field Detail
FETCH_SIZE_NOT_APPLICABLE
int FETCH_SIZE_NOT_APPLICABLE(Code)
fetchSize hint marking that setting fetch size for current statement is N/A.



FETCH_SIZE_NOT_EXPLICITLY_SET
int FETCH_SIZE_NOT_EXPLICITLY_SET(Code)
fetchSize hint marking that there is no statement-level explicit override.





Method Detail
bindDelete
void bindDelete(PreparedStatement stmt, Identity oid, ClassDescriptor cld) throws java.sql.SQLException(Code)
Binds the Identities Primary key values to the statement.
Parameters:
  stmt -
Parameters:
  oid -
Parameters:
  cld - ClassDescriptor for the Object, if null will be lookup automatic



bindDelete
void bindDelete(PreparedStatement stmt, ClassDescriptor cld, Object obj) throws java.sql.SQLException(Code)
binds the objects primary key and locking values to the statement, BRJ



bindInsert
void bindInsert(PreparedStatement stmt, ClassDescriptor cld, Object obj) throws SQLException(Code)
binds the values of the object obj to the statements parameters



bindSelect
void bindSelect(PreparedStatement stmt, Identity oid, ClassDescriptor cld, boolean callableStmt) throws SQLException(Code)
binds the Identities Primary key values to the statement
Parameters:
  stmt -
Parameters:
  oid -
Parameters:
  cld - ClassDescriptor for the Object, if null will be lookup automatic
Parameters:
  callableStmt - Indicate if the specified java.sql.PreparedStatementis a java.sql.CallableStatement supporting stored procedures.



bindStatement
int bindStatement(PreparedStatement stmt, Query query, ClassDescriptor cld, int param) throws SQLException(Code)
bind a Query based Select Statement



bindUpdate
void bindUpdate(PreparedStatement stmt, ClassDescriptor cld, Object obj) throws SQLException(Code)
binds the values of the object obj to the statements parameters



bindValues
int bindValues(PreparedStatement stmt, ValueContainer[] valueContainer, int index) throws SQLException(Code)
binds the given array of values (if not null) starting from the given parameter index the next parameter index



closeResources
public void closeResources(Statement stmt, ResultSet rs)(Code)



getDeleteStatement
PreparedStatement getDeleteStatement(ClassDescriptor cds) throws PersistenceBrokerSQLException(Code)
return a prepared DELETE Statement fitting for the given ClassDescriptor



getGenericStatement
Statement getGenericStatement(ClassDescriptor cds, boolean scrollable) throws PersistenceBrokerException(Code)
return a generic Statement for the given ClassDescriptor



getInsertStatement
PreparedStatement getInsertStatement(ClassDescriptor cds) throws PersistenceBrokerSQLException(Code)
return a prepared Insert Statement fitting for the given ClassDescriptor



getPreparedStatement
PreparedStatement getPreparedStatement(ClassDescriptor cds, String sql, boolean scrollable, int explicitFetchSizeHint, boolean callableStmt) throws PersistenceBrokerException(Code)
Return a PreparedStatement for selecting against the given ClassDescriptor.



getSelectByPKStatement
PreparedStatement getSelectByPKStatement(ClassDescriptor cds) throws PersistenceBrokerSQLException(Code)
return a prepared Select Statement for the given ClassDescriptor



getUpdateStatement
PreparedStatement getUpdateStatement(ClassDescriptor cds) throws PersistenceBrokerSQLException(Code)
return a prepared Update Statement fitting to the given ClassDescriptor



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