1. 程式人生 > >Oracle、SQL Server、MySQL、DB2、PostgreSQL、Sybase預設資訊

Oracle、SQL Server、MySQL、DB2、PostgreSQL、Sybase預設資訊

Oracle預設埠號為:1521

URL:jdbc:oracle:thin:@localhost :1521:orcl

Driver:oracle.jdbc.driver.OracleDriver

 

SQL Server預設埠號為:1433

URL:jdbc:sqlserver://localhost:1433;DatabaseName=dbname

Driver:com.microsoft.sqlserver.jdbc.SQLServerDriver

 

MySQL預設埠號為:3306

URL:jdbc:mysql://localhost:3306/test?user=root&password=&useUnicode=true&characterEncoding=UTF-8

Driver:com.mysql.jdbc.Driver

 

DB2預設埠號為:5000

URL:jdbc:db2://localhost:50000/sample

Driver:com.ibm.db2.jcc.DB2Driver

 

PostgreSQL預設埠號為:5432

URL:jdbc:postgresql://localhost:5432/test

Driver:org.postgresql.Driver

 

Sybase預設埠號為:5007

URL:jdbc:sybase:Tds:localhost:5007/myDB

Driver:com.sysbase.jdbc.SybDriver