You are viewing a plain text version of this content. The canonical link for it is here.
Posted to derby-commits@db.apache.org by dj...@apache.org on 2005/07/01 02:12:36 UTC

svn commit: r208697 - in /incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc: EmbeddedConnectionPoolDataSource.java EmbeddedDataSource.java EmbeddedDriver.java EmbeddedSimpleDataSource.java EmbeddedXADataSource.java

Author: djd
Date: Thu Jun 30 17:12:35 2005
New Revision: 208697

URL: http://svn.apache.org/viewcvs?rev=208697&view=rev
Log:
Cleanup some published api javadoc comments for the embedded jdbc objects.

Modified:
    incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedConnectionPoolDataSource.java
    incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDataSource.java
    incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDriver.java
    incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedSimpleDataSource.java
    incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedXADataSource.java

Modified: incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedConnectionPoolDataSource.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedConnectionPoolDataSource.java?rev=208697&r1=208696&r2=208697&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedConnectionPoolDataSource.java (original)
+++ incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedConnectionPoolDataSource.java Thu Jun 30 17:12:35 2005
@@ -37,7 +37,7 @@
 	EmbeddedConnectionPoolDataSource automatically supports the correct JDBC specification version
 	for the Java Virtual Machine's environment.
 	<UL>
-	<LI> JDBC 3.0 - Java 2 - JDK 1.4
+	<LI> JDBC 3.0 - Java 2 - JDK 1.4, J2SE 5.0
 	<LI> JDBC 2.0 - Java 2 - JDK 1.2,1.3
 	</UL>
 

Modified: incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDataSource.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDataSource.java?rev=208697&r1=208696&r2=208697&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDataSource.java (original)
+++ incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDataSource.java Thu Jun 30 17:12:35 2005
@@ -53,7 +53,7 @@
 	EmbeddedDataSource automatically supports the correct JDBC specification version
 	for the Java Virtual Machine's environment.
 	<UL>
-	<LI> JDBC 3.0 - Java 2 - JDK 1.4
+	<LI> JDBC 3.0 - Java 2 - JDK 1.4, J2SE 5.0
 	<LI> JDBC 2.0 - Java 2 - JDK 1.2,1.3
 	</UL>
 

Modified: incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDriver.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDriver.java?rev=208697&r1=208696&r2=208697&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDriver.java (original)
+++ incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedDriver.java Thu Jun 30 17:12:35 2005
@@ -41,7 +41,7 @@
 	The driver automatically supports the correct JDBC specification version
 	for the Java Virtual Machine's environment.
 	<UL>
-	<LI> JDBC 3.0 - Java 2 - JDK 1.4
+	<LI> JDBC 3.0 - Java 2 - JDK 1.4, J2SE 5.0
 	<LI> JDBC 2.0 - Java 2 - JDK 1.2,1.3
 	</UL>
 

Modified: incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedSimpleDataSource.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedSimpleDataSource.java?rev=208697&r1=208696&r2=208697&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedSimpleDataSource.java (original)
+++ incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedSimpleDataSource.java Thu Jun 30 17:12:35 2005
@@ -41,12 +41,18 @@
  * 
  * 
  * EmbeddedSimpleDataSource is Derby's DataSource implementation
- * for JSR 169.
+ * for J2ME/CDC/Foundation. It is also supports J2SE platforms.
  * 
- * THIS IS A WORK IN PROGRESS
- * 
- * Supports the same properties as EmbeddedDataSource, see that class for details
  * 
+ * Supports the same properties as EmbeddedDataSource, see that class for details.
+ * <P>
+	EmbeddedSimpleDataSource automatically supports the correct JDBC specification version
+	for the Java Virtual Machine's environment.
+	<UL>
+	<LI> JDBC Optional Package for CDC/Foundation Profile(JSR-169) - J2ME - CDC/Foundation
+	<LI> JDBC 3.0 - Java 2 - JDK 1.4, J2SE 5.0
+	<LI> JDBC 2.0 - Java 2 - JDK 1.2,1.3
+	</UL> 
  * @see EmbeddedDataSource
  *
  */
@@ -521,4 +527,5 @@
 
 		jdbcurl = sb.toString();
 	}
-}
\ No newline at end of file
+}
+

Modified: incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedXADataSource.java
URL: http://svn.apache.org/viewcvs/incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedXADataSource.java?rev=208697&r1=208696&r2=208697&view=diff
==============================================================================
--- incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedXADataSource.java (original)
+++ incubator/derby/code/branches/10.1/java/engine/org/apache/derby/jdbc/EmbeddedXADataSource.java Thu Jun 30 17:12:35 2005
@@ -53,7 +53,7 @@
 	EmbeddedXADataSource automatically supports the correct JDBC specification version
 	for the Java Virtual Machine's environment.
 	<UL>
-	<LI> JDBC 3.0 - Java 2 - JDK 1.4
+	<LI> JDBC 3.0 - Java 2 - JDK 1.4, J2SE 5.0
 	<LI> JDBC 2.0 - Java 2 - JDK 1.2,1.3
 	</UL>