参考:
http://sgq0085.iteye.com/blog/1262469
e.g. 常用数据库URL
Derby: jdbc:derby://localhost:1527/COREJAVA;create=true
PostgreSQL: jdbc:postgresql:COREJAVA
MySQL: jdbc:mysql://host:port/database
Oracle: jdbc:oracle:thin:@host:port:databse
JDBC URL的语法一般为: jdbc:subprotocol:other stuff
subprotocol用于指明连接到数据库的特定驱动程序。
other stuff参数的格式随所使用的subprotocol不同而不同。
androidpn中的配置文件:
- # JDBC Configuration
- jdbcDriverClassName=com.mysql.jdbc.Driver
- jdbcUrl=jdbc:mysql://127.0.0.1:3306/test?useUnicode=true&characterEncoding=utf-8&zeroDateTimeBehavior=convertToNull
- hibernate.dialect=org.hibernate.dialect.MySQL5InnoDBDialect
- jdbcUsername=root
- jdbcPassword=root
- # DBCP Pool settings
- jdbcInitialSize=5
- jdbcMaxActive=10
- jdbcMaxIdle=5
- jdbcMaxWait=30000
- jdbcValidationQuery=select 1