Please click here to read the introduction of the series of posts and the format being used.
- Oracle – MySQL – ConnectorJ
- com.mysql.jdbc.Driver
- jdbc:mysql://<hostname>[,<failoverhost>][:<port>]/<dbname>[?<URL attribute>=<value>]*
- jdbc:mysql://localhost:3306/testdb
- 3306
- HP – NeoView – HPT4
- com.hp.t4jdbc.HPT4Driver
- jdbc:hpt4jdbc://ip_addr_or_host_name:18650/[:][property=value[;property2=value2]...]
- jdbc:hpt4jdbc://primary_IP_addr_on_Neoview_DB:18650/
- 18650
- IBM – Netezza – Netezza
- org.netezza.Driver
- jdbc:netezza://<server>[:<port>]/<database>
- jdbc:netezza://netezzaserver:5480/sample
- 5480
- OpenBase – OpenBase – OpenBase
- com.openbase.jdbc.ObDriver
- jdbc:openbase://<server>/<databaseName>
- jdbc:openbase://localhost/petstore
- ???
- Oracle – Oracle – Oracle
- oracle.jdbc.driver.OracleDriver
- JDBC URLs
- Thin with Service Name - jdbc:oracle:thin:@//<host>:<port>/<service_name>
- Thin with SID - jdbc:oracle:thin:@<host>:<port>:<SID>
- Thin with TNS - jdbc:oracle:thin:@<TNSName>
- OCI - jdbc:oracle:oci:@<database_name>
- Examples
- Thin with Service Name - jdbc:oracle:thin:@//192.168.2.1:1521/XE
- Thin with SID - jdbc:oracle:thin:192.168.2.1:1521:X01A
- Thin with TNS - jdbc:oracle:thin:@GL
- OCI - jdbc:oracle:oci:@HR
- 1521
- Pervasive – Pervasive – Pervasive
- com.pervasive.jdbc.v2.Driver
- jdbc:pervasive://<server>[:<port>]/<datasource>
- jdbc:pervasive://127.0.0.1:1583/sys
- 1583
- PostgreSQL – PostgreSQL – PostgreSQL
- org.postgresql.Driver
- jdbc:postgresql://<server>[:<port>]/<databaseName>
- jdbc:postgresql://localhost:5342/pgdb
- 5342
No comments:
Post a Comment