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

All known Subclasses:   org.apache.ojb.broker.platforms.PlatformOracle9iImpl,  org.apache.ojb.broker.platforms.PlatformWLOracle9iImpl,
PlatformOracleImpl
public class PlatformOracleImpl extends PlatformDefaultImpl (Code)
This class is a concrete implementation of Platform. Provides an implementation that works around some issues with Oracle in general and Oracle's Thin driver in particular.

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.

Implementation configuration properties:

Property Key Property Values
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: PlatformOracleImpl.java,v 1.20.2.4 2005/08/16 20:11:19 arminw Exp $


Field Summary
protected static  intORACLE_JDBC_TYPE_CURSOR
     Field value of oracle.jdbc.OracleTypes.CURSOR.
final protected static  intTHIN_BLOB_MAX_SIZE
    
final protected static  intTHIN_CLOB_MAX_SIZE
    
final protected static  StringTHIN_URL_PREFIX
    

Constructor Summary
public  PlatformOracleImpl()
     Default constructor.

Method Summary
public  voidafterStatementCreate(Statement stmt)
     In Oracle we set escape processing explizit 'true' after a statement was created.
protected  voidchangePreparedStatementResultSetType(PreparedStatement ps)
     Attempts to modify a private member in the Oracle thin driver's resultset to allow proper setting of large binary streams.
public  StringcreateSequenceQuery(String sequenceName)
    
public  StringcreateSequenceQuery(String sequenceName, Properties prop)
    
public  StringdropSequenceQuery(String sequenceName)
    
public  bytegetJoinSyntaxType()
    
protected  voidinitOracleReflectedVars()
     Initializes static variables needed for getting Oracle-specific JDBC types.
protected static  booleanisUsingOracleThinDriver(Connection conn)
     Checks if the supplied connection is using the Oracle thin driver.
public  StringnextSequenceQuery(String sequenceName)
    
public  CallableStatementprepareNextValProcedureStatement(Connection con, String procedureName, String sequenceName)
     Method prepareNextValProcedureStatement implementation is simply copied over from PlatformMsSQLServerImpl class.
public  voidregisterOutResultSet(CallableStatement stmt, int position)
    
public  voidsetObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType)
     For objects beyond 4k, weird things happen in Oracle if you try to use "setBytes", so for all cases it's better to use setBinaryStream.

Field Detail
ORACLE_JDBC_TYPE_CURSOR
protected static int ORACLE_JDBC_TYPE_CURSOR(Code)
Field value of oracle.jdbc.OracleTypes.CURSOR.
See Also:   PlatformOracleImpl.initOracleReflectedVars



THIN_BLOB_MAX_SIZE
final protected static int THIN_BLOB_MAX_SIZE(Code)



THIN_CLOB_MAX_SIZE
final protected static int THIN_CLOB_MAX_SIZE(Code)



THIN_URL_PREFIX
final protected static String THIN_URL_PREFIX(Code)




Constructor Detail
PlatformOracleImpl
public PlatformOracleImpl()(Code)
Default constructor.




Method Detail
afterStatementCreate
public void afterStatementCreate(Statement stmt) throws PlatformException(Code)
In Oracle we set escape processing explizit 'true' after a statement was created.



changePreparedStatementResultSetType
protected void changePreparedStatementResultSetType(PreparedStatement ps)(Code)
Attempts to modify a private member in the Oracle thin driver's resultset to allow proper setting of large binary streams.



createSequenceQuery
public String createSequenceQuery(String sequenceName)(Code)



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



dropSequenceQuery
public String dropSequenceQuery(String sequenceName)(Code)



getJoinSyntaxType
public byte getJoinSyntaxType()(Code)
Get join syntax type for this RDBMS - one on of the constants from JoinSyntaxType interface



initOracleReflectedVars
protected void initOracleReflectedVars()(Code)
Initializes static variables needed for getting Oracle-specific JDBC types.



isUsingOracleThinDriver
protected static boolean isUsingOracleThinDriver(Connection conn)(Code)
Checks if the supplied connection is using the Oracle thin driver.
Parameters:
  conn - database connection for which to check JDBC-driver true if the connection is using Oracle thin driver, falseotherwise.



nextSequenceQuery
public String nextSequenceQuery(String sequenceName)(Code)



prepareNextValProcedureStatement
public CallableStatement prepareNextValProcedureStatement(Connection con, String procedureName, String sequenceName) throws PlatformException(Code)
Method prepareNextValProcedureStatement implementation is simply copied over from PlatformMsSQLServerImpl class.
See Also:   org.apache.ojb.broker.platforms.Platform.prepareNextValProcedureStatement(java.sql.Connectionjava.lang.Stringjava.lang.String)



registerOutResultSet
public void registerOutResultSet(CallableStatement stmt, int position) throws SQLException(Code)

See Also:   org.apache.ojb.broker.platforms.Platform.registerOutResultSet(java.sql.CallableStatementint)



setObjectForStatement
public void setObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType) throws SQLException(Code)
For objects beyond 4k, weird things happen in Oracle if you try to use "setBytes", so for all cases it's better to use setBinaryStream. Oracle also requires a change in the resultset type of the prepared statement. MBAIRD NOTE: BLOBS may not work with Oracle database/thin driver versions prior to 8.1.6.
See Also:   Platform.setObjectForStatement



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.