Java Doc for StatementManager.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) 


java.lang.Object
   org.apache.ojb.broker.accesslayer.StatementManager

StatementManager
public class StatementManager implements StatementManagerIF(Code)
manages JDBC Connection and Statement resources.
author:
   Thomas Mahler
author:
   Randall Burt
version:
   $Id: StatementManager.java,v 1.47.2.5 2005/06/04 14:13:43 arminw Exp $



Constructor Summary
public  StatementManager(PersistenceBroker pBroker)
    

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


Constructor Detail
StatementManager
public StatementManager(PersistenceBroker pBroker)(Code)




Method Detail
bindDelete
public void bindDelete(PreparedStatement stmt, Identity oid, ClassDescriptor cld) throws SQLException(Code)
binds the Identities Primary key values to the statement



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



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



bindSelect
public void bindSelect(PreparedStatement stmt, Identity oid, ClassDescriptor cld, boolean callableStmt) throws SQLException(Code)
Binds the Identities Primary key values to the statement.



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



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



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



bindValues
public int bindValues(PreparedStatement stmt, ValueContainer[] values, 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)



getAllValues
protected ValueContainer[] getAllValues(ClassDescriptor cld, Object obj) throws PersistenceBrokerException(Code)
returns an array containing values for all the Objects attribute
throws:
  PersistenceBrokerException - if there is an erros accessing obj field values



getDeleteStatement
public PreparedStatement getDeleteStatement(ClassDescriptor cld) throws PersistenceBrokerSQLException, PersistenceBrokerException(Code)
return a prepared DELETE Statement fitting for the given ClassDescriptor



getGenericStatement
public Statement getGenericStatement(ClassDescriptor cds, boolean scrollable) throws PersistenceBrokerException(Code)
return a generic Statement for the given ClassDescriptor. Never use this method for UPDATE/INSERT/DELETE if you want to use the batch mode.



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



getKeyValues
protected ValueContainer[] getKeyValues(PersistenceBroker broker, ClassDescriptor cld, Object obj) throws PersistenceBrokerException(Code)
returns an Array with an Objects PK VALUES
throws:
  PersistenceBrokerException - if there is an erros accessing o field values



getKeyValues
protected ValueContainer[] getKeyValues(PersistenceBroker broker, ClassDescriptor cld, Identity oid) throws PersistenceBrokerException(Code)
returns an Array with an Identities PK VALUES
throws:
  PersistenceBrokerException - if there is an erros accessing o field values



getNonKeyValues
protected ValueContainer[] getNonKeyValues(PersistenceBroker broker, ClassDescriptor cld, Object obj) throws PersistenceBrokerException(Code)
returns an Array with an Objects NON-PK VALUES
throws:
  PersistenceBrokerException - if there is an erros accessing o field values



getPreparedStatement
public PreparedStatement getPreparedStatement(ClassDescriptor cds, String sql, boolean scrollable, int explicitFetchSizeHint, boolean callableStmt) throws PersistenceBrokerException(Code)
return a generic Statement for the given ClassDescriptor



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



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



Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

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