01 <!-- Mysql --> |
02 | <entry key= "jdbc.url" >jdbc:mysql: //localhost:3306/test?useUnicode=true&characterEncoding=UTF-8</entry> |
03 | <entry key= "jdbc.driver" >com.mysql.jdbc.Driver</entry> |
04 | |
@tnsname_devdb
06 | <entry key= "jdbc.url" >jdbc:oracle:thin: @192 .168. 0.177 : 1521 :[sid]</entry> |
07 | <entry key= "jdbc.driver" >oracle.jdbc.driver.OracleDriver</entry> |
08 | -->
|
09 | |
10 | <!-- SQLServer2000 |
11 | <entry key= "jdbc.url" >jdbc:microsoft:sqlserver: //localhost:1433;DatabaseName=[database]</entry> |
12 | <entry key= "jdbc.driver" >com.microsoft.jdbc.sqlserver.SQLServerDriver</entry> |
13 | -->
|
14 | |
15 | <!-- SQLServer2005 |
16 | <entry key= "jdbc.url" >jdbc:sqlserver: //192.168.0.98:1433;DatabaseName=[database]</entry> |
17 | <entry key= "jdbc.driver" >com.microsoft.sqlserver.jdbc.SQLServerDriver</entry> |
18 | -->
|
19 | |
20 | <!-- JTDs for
SQLServer |
21 | <entry key= "jdbc.url" >jdbc:jtds:sqlserver: //192.168.0.102:1433/[database];tds=8.0;lastupdatecount=true</entry> |
22 | <entry key= "jdbc.driver" >net.sourceforge.jtds.jdbc.Driver</entry> |
23 | -->
|
24 | |
25 | <!-- PostgreSql |
26 | <entry key= "jdbc.url" >jdbc:postgresql: //localhost/[database]</entry> |
27 | <entry key= "jdbc.driver" >org.postgresql.Driver</entry> |
28 | --> |
29 | |
30 | <!-- Sybase |
31 | <entry key= "jdbc.url" >jdbc:sybase:Tds:localhost: 5007 /[database]</entry> |
32 | <entry key= "jdbc.driver" >com.sybase.jdbc.SybDriver</entry> |
33 | --> |
34 | |
35 | <!-- DB2 |
36 | <entry key= "jdbc.url" >jdbc:db2: //localhost:5000/[database]</entry> |
37 | <entry key= "jdbc.driver" >com.ibm.db2.jdbc.app.DB2Driver</entry> |
38 | -->
|
39 | |
40 | <!-- HsqlDB |
41 | <entry key= "jdbc.url" >jdbc:hsqldb:mem:generatorDB</entry> |
42 | <entry key= "jdbc.driver" >org.hsqldb.jdbcDriver</entry> |
43 | -->
|
44 | |
45 | <!-- Derby |
46 | <entry key= "jdbc.url" >jdbc:derby: //localhost/databaseName</entry> |
47 | <entry key= "jdbc.driver" >org.apache.derby.jdbc.ClientDriver</entry> |
48 | -->
|
49 | |
50 | <!-- H2 |
51 | <entry key= "jdbc.url" >jdbc:h2:tcp: //localhost/~/test</entry> |
52 | <entry key= "jdbc.driver" >org.h2.Driver</entry> |
53 | --> |