Java Doc for PlatformWLOracle9iImpl.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
         org.apache.ojb.broker.platforms.PlatformWLOracle9iImpl

PlatformWLOracle9iImpl
public class PlatformWLOracle9iImpl extends PlatformOracleImpl (Code)
This class is a concrete implementation of Platform. Provides an implementation that works around some issues with Oracle running within WebLogic. As WebLogic wraps the Oracle physical connection with its own logical connection it is necessary to retrieve the underlying physical connection before creating a CLOB or BLOB. NOTE : When you use the physical connection WebLogic by default marks it as "infected" and discards it when the logicical connection is closed. You can change this behavior by setting the RemoveInfectedConnectionsEnabled attribute on a connection pool. see http://e-docs.bea.com/wls/docs81/jdbc/thirdparty.html#1043646 Optimization: Oracle Batching (not standard JDBC batching) see http://technet.oracle.com/products/oracle9i/daily/jun07.html Optimization: Oracle Prefetching see http://otn.oracle.com/sample_code/tech/java/sqlj_jdbc/files/advanced/RowPrefetchSample/Readme.html TODO: Optimization: use ROWNUM to minimize the effects of not having server side cursors see http://asktom.oracle.com/pls/ask/f?p=4950:8:::::F4950_P8_DISPLAYID:127412348064
author:
   Matthew Baird
author:
   Erik Forkalsrud
author:
   Martin Kalén
author:
   Dougall Squair
version:
   CVS $Id: PlatformWLOracle9iImpl.java,v 1.2.2.3 2005/12/21 22:26:40 tomdz Exp $
See Also:   Platform
See Also:   PlatformDefaultImpl
See Also:   PlatformOracleImpl
See Also:   PlatformOracle9iImplPlatformOracle9iImpl


Field Summary
final protected static  JdbcTypeBASE_BLOB
    
final protected static  JdbcTypeBASE_CLOB
    
final protected static  Object[]PARAM_BOOLEAN_TRUE
    
final protected static  Object[]PARAM_ROW_PREFETCH_SIZE
    
final protected static  Object[]PARAM_STATEMENT_BATCH_SIZE
    
final protected static  Class[]PARAM_TYPE_BOOLEAN
    
final protected static  Class[]PARAM_TYPE_INTEGER
    
final protected static  Class[]PARAM_TYPE_STRING
    
final protected static  intROW_PREFETCH_SIZE
    
final protected static  intSTATEMENTS_PER_BATCH
    
protected static  Mapm_batchStatementsInProgress
    


Method Summary
public  voidaddBatch(PreparedStatement stmt)
     Try Oracle update batching and call executeUpdate or revert to JDBC update batching.
public  voidafterStatementCreate(java.sql.Statement stmt)
     Enables Oracle row prefetching if supported.
public  voidbeforeBatch(PreparedStatement stmt)
     Try Oracle update batching and call setExecuteBatch or revert to JDBC update batching.
public  int[]executeBatch(PreparedStatement stmt)
     Try Oracle update batching and call sendBatch or revert to JDBC update batching.
Parameters:
  stmt - the batched prepared statement about to be executed always null if Oracle update batching is used,since it is impossible to dissolve total row count into distinctstatement counts.
public  voidsetObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType)
    

Field Detail
BASE_BLOB
final protected static JdbcType BASE_BLOB(Code)



BASE_CLOB
final protected static JdbcType BASE_CLOB(Code)



PARAM_BOOLEAN_TRUE
final protected static Object[] PARAM_BOOLEAN_TRUE(Code)



PARAM_ROW_PREFETCH_SIZE
final protected static Object[] PARAM_ROW_PREFETCH_SIZE(Code)



PARAM_STATEMENT_BATCH_SIZE
final protected static Object[] PARAM_STATEMENT_BATCH_SIZE(Code)



PARAM_TYPE_BOOLEAN
final protected static Class[] PARAM_TYPE_BOOLEAN(Code)



PARAM_TYPE_INTEGER
final protected static Class[] PARAM_TYPE_INTEGER(Code)



PARAM_TYPE_STRING
final protected static Class[] PARAM_TYPE_STRING(Code)



ROW_PREFETCH_SIZE
final protected static int ROW_PREFETCH_SIZE(Code)



STATEMENTS_PER_BATCH
final protected static int STATEMENTS_PER_BATCH(Code)



m_batchStatementsInProgress
protected static Map m_batchStatementsInProgress(Code)





Method Detail
addBatch
public void addBatch(PreparedStatement stmt) throws PlatformException(Code)
Try Oracle update batching and call executeUpdate or revert to JDBC update batching.
Parameters:
  stmt - the statement beeing added to the batch
throws:
  PlatformException - upon JDBC failure



afterStatementCreate
public void afterStatementCreate(java.sql.Statement stmt) throws PlatformException(Code)
Enables Oracle row prefetching if supported. See http://otn.oracle.com/sample_code/tech/java/sqlj_jdbc/files/advanced/RowPrefetchSample/Readme.html. This is RDBMS server-to-client prefetching and thus one layer below the OJB-internal prefetching-to-cache introduced in version 1.0rc5.
Parameters:
  stmt - the statement just created
throws:
  PlatformException - upon JDBC failure



beforeBatch
public void beforeBatch(PreparedStatement stmt) throws PlatformException(Code)
Try Oracle update batching and call setExecuteBatch or revert to JDBC update batching. See 12-2 Update Batching in the Oracle9i JDBC Developer's Guide and Reference.
Parameters:
  stmt - the prepared statement to be used for batching
throws:
  PlatformException - upon JDBC failure



executeBatch
public int[] executeBatch(PreparedStatement stmt) throws PlatformException(Code)
Try Oracle update batching and call sendBatch or revert to JDBC update batching.
Parameters:
  stmt - the batched prepared statement about to be executed always null if Oracle update batching is used,since it is impossible to dissolve total row count into distinctstatement counts. If JDBC update batching is used, an int array isreturned containing number of updated rows for each batched statement.
throws:
  PlatformException - upon JDBC failure



setObjectForStatement
public void setObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType) throws SQLException(Code)

See Also:   Platform.setObjectForStatement
See Also:   



Fields inherited from org.apache.ojb.broker.platforms.PlatformOracleImpl
protected static int ORACLE_JDBC_TYPE_CURSOR(Code)(Java Doc)
final protected static int THIN_BLOB_MAX_SIZE(Code)(Java Doc)
final protected static int THIN_CLOB_MAX_SIZE(Code)(Java Doc)
final protected static String THIN_URL_PREFIX(Code)(Java Doc)

Methods inherited from org.apache.ojb.broker.platforms.PlatformOracleImpl
public void afterStatementCreate(Statement stmt) throws PlatformException(Code)(Java Doc)
protected void changePreparedStatementResultSetType(PreparedStatement ps)(Code)(Java Doc)
public String createSequenceQuery(String sequenceName)(Code)(Java Doc)
public String createSequenceQuery(String sequenceName, Properties prop)(Code)(Java Doc)
public String dropSequenceQuery(String sequenceName)(Code)(Java Doc)
public byte getJoinSyntaxType()(Code)(Java Doc)
protected void initOracleReflectedVars()(Code)(Java Doc)
protected static boolean isUsingOracleThinDriver(Connection conn)(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 setObjectForStatement(PreparedStatement ps, int index, Object value, int sqlType) throws SQLException(Code)(Java Doc)

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.