- Timestamp:
- 01/26/11 13:56:10 (16 months ago)
- Location:
- branches/ds_pool
- Files:
-
- 3 added
- 2 modified
-
.classpath (modified) (1 diff)
-
lib/commons-dbcp-1.3.jar (added)
-
lib/commons-logging-1.1.1.jar (added)
-
lib/commons-pool-1.5.4.jar (added)
-
src/org/bridgedb/rdb/IDMapperRdb.java (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
branches/ds_pool/.classpath
r343 r476 4 4 <classpathentry excluding="org/bridgedb/rdb/TestJdbc.java" kind="src" path="test"/> 5 5 <classpathentry kind="con" path="org.eclipse.jdt.launching.JRE_CONTAINER"/> 6 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/3"/>7 6 <classpathentry combineaccessrules="false" exported="true" kind="src" path="/org.bridgedb"/> 8 7 <classpathentry combineaccessrules="false" exported="true" kind="src" path="/org.bridgedb.bio"/> 9 8 <classpathentry kind="lib" path="lib/derby.jar"/> 10 9 <classpathentry kind="lib" path="build-lib/derbyclient.jar"/> 10 <classpathentry kind="lib" path="lib/commons-pool-1.5.4.jar"/> 11 <classpathentry kind="lib" path="lib/commons-logging-1.1.1.jar"/> 12 <classpathentry kind="lib" path="lib/commons-dbcp-1.3.jar"/> 13 <classpathentry kind="con" path="org.eclipse.jdt.junit.JUNIT_CONTAINER/4"/> 11 14 <classpathentry kind="output" path="bin"/> 12 15 </classpath> -
branches/ds_pool/src/org/bridgedb/rdb/IDMapperRdb.java
r318 r476 56 56 public IDMapper connect(String location) throws IDMapperException 57 57 { 58 System.out.println ("Using ds_pool driver"); 58 59 String url = "jdbc:derby:jar:(" + location + ")database"; 59 60 return SimpleGdbFactory.createInstance(location, url);
