Java Doc for PlatformDb2Impl.java in  » Database-ORM » db-ojb » org » apache » ojb » broker » platforms » 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.platforms 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   org.apache.ojb.broker.platforms.PlatformDefaultImpl
      org.apache.ojb.broker.platforms.PlatformDb2Impl

PlatformDb2Impl
public class PlatformDb2Impl extends PlatformDefaultImpl (Code)
This class extends PlatformDefaultImpl and defines specific behavior for the DB2 platform.

Many of the database sequence specific properties can be specified using custom attributes within the sequence-manager element.
The database sequence specific properties are generally speaking, see database user guide for detailed description.

Supported properties on sequence creation:

Property Key Property Values
seq.as Database sequence specific property.
Specifies the datatype used for the sequence. Allowed: all numeric datatypes? e.g. INTEGER
sequenceStart DEPRECATED. Database sequence specific property.
Specifies the first sequence number to be generated. Allowed: 1 or greater.
seq.start Database sequence specific property.
Specifies the first sequence number to be generated. Allowed: 1 or greater.
seq.incrementBy Database sequence specific property.
Specifies the interval between sequence numbers. This value can be any positive or negative integer, but it cannot be 0.
seq.maxValue Database sequence specific property.
Set max value for sequence numbers.
seq.minValue Database sequence specific property.
Set min value for sequence numbers.
seq.cycle Database sequence specific property.
If true, specifies that the sequence continues to generate values after reaching either its maximum or minimum value.
If false, specifies that the sequence cannot generate more values after reaching its maximum or minimum value.
seq.cache Database sequence specific property.
Specifies how many values of the sequence Oracle preallocates and keeps in memory for faster access. Allowed values: 2 or greater. If set 0, an explicite nocache expression will be set.
seq.order Database sequence specific property.
If set true, guarantees that sequence numbers are generated in order of request.
If false, a no order expression will be set.

author:
   Thomas Mahler
version:
   $Id: PlatformDb2Impl.java,v 1.10.2.4 2005/12/21 22:26:40 tomdz Exp $




Method Summary
public  StringcreateSequenceQuery(String sequenceName)
    
public  StringcreateSequenceQuery(String sequenceName, Properties prop)
    
public  StringdropSequenceQuery(String sequenceName)
    
public  StringgetLastInsertIdentityQuery(String tableName)
    
public  StringnextSequenceQuery(String sequenceName)
    
public  voidsetObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType)
     Patch provided by Avril Kotzen (hi001@webmail.co.za) DB2 handles TINYINT (for mapping a byte).



Method Detail
createSequenceQuery
public String createSequenceQuery(String sequenceName)(Code)



createSequenceQuery
public String createSequenceQuery(String sequenceName, Properties prop)(Code)



dropSequenceQuery
public String dropSequenceQuery(String sequenceName)(Code)



getLastInsertIdentityQuery
public String getLastInsertIdentityQuery(String tableName)(Code)



nextSequenceQuery
public String nextSequenceQuery(String sequenceName)(Code)



setObjectForStatement
public void setObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType) throws SQLException(Code)
Patch provided by Avril Kotzen (hi001@webmail.co.za) DB2 handles TINYINT (for mapping a byte).



Fields inherited from org.apache.ojb.broker.platforms.PlatformDefaultImpl
protected Logger log(Code)(Java Doc)
protected boolean m_batchUpdatesChecked(Code)(Java Doc)
protected boolean m_supportsBatchUpdates(Code)(Java Doc)

Methods inherited from org.apache.ojb.broker.platforms.PlatformDefaultImpl
public void addBatch(PreparedStatement stmt) throws PlatformException(Code)(Java Doc)
public void addPagingSql(StringBuffer anSqlString)(Code)(Java Doc)
public void afterStatementClose(Statement stmt, ResultSet rs) throws PlatformException(Code)(Java Doc)
public void afterStatementCreate(Statement stmt) throws PlatformException(Code)(Java Doc)
public void beforeBatch(PreparedStatement stmt) throws PlatformException(Code)(Java Doc)
public void beforeStatementClose(Statement stmt, ResultSet rs) throws PlatformException(Code)(Java Doc)
public int bindPagingParameters(PreparedStatement ps, int index, int startAt, int endAt) throws SQLException(Code)(Java Doc)
public boolean bindPagingParametersFirst()(Code)(Java Doc)
public void changeAutoCommitState(JdbcConnectionDescriptor jcd, Connection con, boolean newState)(Code)(Java Doc)
protected void checkForBatchSupport(Connection conn)(Code)(Java Doc)
public String concatenate(String[] theColumns)(Code)(Java Doc)
public String createSequenceQuery(String sequenceName, Properties prop)(Code)(Java Doc)
public String createSequenceQuery(String sequenceName)(Code)(Java Doc)
public String dropSequenceQuery(String sequenceName)(Code)(Java Doc)
public int[] executeBatch(PreparedStatement stmt) throws PlatformException(Code)(Java Doc)
protected String getConcatenationCharacter()(Code)(Java Doc)
public String getEscapeClause(LikeCriteria aCriteria)(Code)(Java Doc)
public byte getJoinSyntaxType()(Code)(Java Doc)
public String getLastInsertIdentityQuery(String tableName)(Code)(Java Doc)
public void initializeJdbcConnection(JdbcConnectionDescriptor jcd, Connection conn) throws PlatformException(Code)(Java Doc)
public String nextSequenceQuery(String sequenceName)(Code)(Java Doc)
public CallableStatement prepareNextValProcedureStatement(Connection con, String procedureName, String sequenceName) throws PlatformException(Code)(Java Doc)
public void registerOutResultSet(CallableStatement stmt, int position) throws SQLException(Code)(Java Doc)
public void setNullForStatement(PreparedStatement ps, int index, int sqlType) throws SQLException(Code)(Java Doc)
public void setObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType) throws SQLException(Code)(Java Doc)
public boolean supportsBatchOperations()(Code)(Java Doc)
public boolean supportsMultiColumnCountDistinct()(Code)(Java Doc)
public boolean supportsPaging()(Code)(Java Doc)
public boolean useCountForResultsetSize()(Code)(Java Doc)

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.