123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- ##########################
- ### DataBase Platforms ###
- ##########################
- jdbc.rowMapperFactory defaultRowMapperFactory
- jdbc.handler defaultLobHandler
- #jdbc.handler defaultLobHandler
- hibernate.jdbc.batch_size 10
- ### Oracle
- #hibernate.dialect org.hibernate.dialect.Oracle9Dialect
- #hibernate.connection.driver_class oracle.jdbc.driver.OracleDriver
- #hibernate.connection.username wkh
- #hibernate.connection.password wkh
- #hibernate.connection.url jdbc:oracle:thin:@cftest:1521:oracle
- #Sybase 15.0
- #hibernate.dialect org.hibernate.dialect.SybaseDialect
- #hibernate.connection.driver_class net.sourceforge.jtds.jdbc.Driver
- #hibernate.connection.url jdbc:jtds:sybase://cf-yjp:5000/cf;charset=utf-8;SendStringParameterAsUnicode=true
- #hibernate.connection.username
- #hibernate.connection.password
- ## MySQL
- #hibernate.dialect org.hibernate.dialect.MySQLDialect
- #hibernate.connection.driver_class com.mysql.jdbc.Driver
- #hibernate.connection.url jdbc\:mysql\://192.168.1.159\:3306/clis
- #
- #hibernate.connection.username root
- #hibernate.connection.password bhadmin
- #hibernate.dialect org.hibernate.dialect.MySQLDialect
- #hibernate.connection.driver_class com.mysql.jdbc.Driver
- #hibernate.connection.url jdbc\:mysql\://localhost\:3306/clis
- #
- #hibernate.connection.username root
- #hibernate.connection.password xmadage
- jdbc.driver=com.mysql.jdbc.Driver
- jdbc.url=jdbc:mysql://localhost:3306/clis?characterEncoding=utf8
- jdbc.username=root
- jdbc.password=root
- hibernate.dialect=org.hibernate.dialect.MySQLDialect
-
- jdbc.initialPoolSize=20
- jdbc.maxIdleTime=3600
- jdbc.minPoolSize=20
- jdbc.maxPoolSize=20
- jdbc.testConnectionOnCheckin=true
- jdbc.automaticTestTable =sys_c3potest
- jdbc.idleConnectionTestPeriod = 600
- #hibernate.dialect org.hibernate.dialect.MySQLDialect
- #hibernate.connection.driver_class com.mysql.jdbc.Driver
- #hibernate.connection.url jdbc\:mysql\://192.168.1.109\:3306/clis
- #
- #hibernate.connection.username root
- #hibernate.connection.password root
- ## SQLServer2000
- #hibernate.dialect org.hibernate.dialect.SQLServerDialect
- #hibernate.connection.driver_class net.sourceforge.jtds.jdbc.Driver
- #hibernate.connection.url jdbc:jtds:sqlserver://localhost:1433/cute
- #hibernate.connection.username sa
- #hibernate.connection.password sa
- ## SQLServer2005
- #hibernate.dialect org.hibernate.dialect.SQLServerDialect
- #hibernate.connection.driver_class com.microsoft.sqlserver.jdbc.SQLServerDriver
- #hibernate.connection.url jdbc:sqlserver://server:1433;DatabaseName=Test
- #hibernate.connection.username
- #hibernate.connection.password
- ## Informix
- #hibernate.dialect org.hibernate.dialect.Informix9Dialect
- #hibernate.connection.driver_class com.informix.jdbc.IfxDriver
- #hibernate.connection.url jdbc:informix-sqli://server:7515/uaas:INFORMIXSERVER=k460secsoc
- #hibernate.connection.username
- #hibernate.connection.password
- ## DB2
- #hibernate.dialect org.hibernate.dialect.DB2820Dialect
- #hibernate.connection.driver_class com.ibm.db2.jcc.DB2Driver
- #hibernate.connection.url jdbc:db2://cftest:50000/cf
- #hibernate.connection.username
- #hibernate.connection.password
- # Derby
- #hibernate.dialect org.hibernate.dialect.DerbyDialect
- #hibernate.connection.driver_class org.apache.derby.jdbc.EmbeddedDriver
- #hibernate.connection.url jdbc:derby:src/webapp/WEB-INF/derby;create=true
- #hibernate.connection.username
- #hibernate.connection.password
- ## DO NOT specify hibernate.connection.sqlDialect
|