1. 程式人生 > >三種資料庫常見的URL以及埠

三種資料庫常見的URL以及埠

 sqlserver預設埠號為:1433


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


DRIVERNAME:"com.microsoft.jdbc.sqlserver.SQLServerDriver";




mysql 預設埠號為:3306


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


DRIVERNAME:"com.mysql.jdbc.Driver";




oracle 預設埠號為:1521


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


DRIVERNAME:"oracle.jdbc.driver.OracleDriver";