各种数据库JDBC连接的配置

PostgreSQL:

jdbc.driver=org.postgresql.Driver

jdbc.url=jdbc:postgresql://host:port/db

hibernate.dialect=org.hibernate.dialect.PostgreSQLDialect


MySQL:

jdbc.driver=com.mysql.jdbc.Driver

jdbc.url=jdbc:mysql://host:port/db

hibernate.dialect=org.hibernate.dialect.MySQLDialect


Oracle:

jdbc.driver=oracle.jdbc.driver.OracleDriver

jdbc.url=jdbc:oracle:thin:@host :port:db

hibernate.dialect=


SQLServer:

jdbc.driver=com.microsoft.sqlserver.jdbc.SQLServerDriver

jdbc.url=jdbc:sqlserver://host:port;DatabaseName=db

hibernate.dialect=


DB2:

jdbc.driver=com.ibm.db2.jcc.DB2Driver

jdbc.url=jdbc:db2://host:port/db

hibernate.dialect=



你可能感兴趣的:(各种数据库JDBC连接的配置)