mkalen 2005/03/14 14:48:32
Modified: src/java/org/apache/ojb/broker/platforms
PlatformOracle9iImpl.java
Log:
Merge with OJB_1_0_RELEASE branch: As suggested on ojb-user by Danilo
Tommasina: change join-syntax to SQL92 for Oracle9i platform.
Revision Changes Path
1.16 +11 -3
db-ojb/src/java/org/apache/ojb/broker/platforms/PlatformOracle9iImpl.java
Index: PlatformOracle9iImpl.java
===================================================================
RCS file:
/home/cvs/db-ojb/src/java/org/apache/ojb/broker/platforms/PlatformOracle9iImpl.java,v
retrieving revision 1.15
retrieving revision 1.16
diff -u -r1.15 -r1.16
--- PlatformOracle9iImpl.java 11 Mar 2005 19:13:23 -0000 1.15
+++ PlatformOracle9iImpl.java 14 Mar 2005 22:48:32 -0000 1.16
@@ -96,8 +96,6 @@
/**
* Enables Oracle statement caching and row prefetching if supported by
the JDBC-driver.
- * See
- * [EMAIL PROTECTED]
"http://otn.oracle.com/sample_code/tech/java/sqlj_jdbc/files/jdbc30/StmtCacheSample/Readme.html"}
* @param jcd the OJB <code>JdbcConnectionDescriptor</code> (metadata)
for the connection to be initialized
* @param conn the <code>Connection</code>-object (physical) to be
initialized
* @see PlatformDefaultImpl#initializeJdbcConnection
@@ -366,4 +364,14 @@
}
}
+ /**
+ * Get join syntax type for this RDBMS.
+ *
+ * @return SQL92_NOPAREN_JOIN_SYNTAX
+ */
+ public byte getJoinSyntaxType()
+ {
+ return SQL92_NOPAREN_JOIN_SYNTAX;
+ }
+
}
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]