Changeset 1478
- Timestamp:
- Oct 19, 2005, 12:25:25 PM (17 years ago)
- Location:
- trunk
- Files:
-
- 2 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/base2.license.txt
r1389 r1478 38 38 * This product includes software developed by 39 39 MySQL (http://www.mysql.com/) 40 41 * This product includes software developed by 42 PostgreSQL (http://www.postgresql.org) 40 43 41 44 * This product includes software developed by the -
trunk/doc/3rd-party-components.txt
r1284 r1478 34 34 35 35 36 Hibernate 3. 036 Hibernate 3.1 37 37 ------------- 38 38 An object/relational persistence and query service for Java. Shields … … 40 40 41 41 More info : http://www.hibernate.org/ 42 Version : 3. 0.542 Version : 3.1.rc1 43 43 License : LGPL (hibernate.license.txt) 44 44 Jar files : hibernate3.jar, antlr-2.5.7H3.jar, asm.jar, cglib-2.1.jar, 45 45 commons-collections-2.1.1.jar, commons-logging-1.0.4.jar 46 46 dom4j-1.6.jar, ehcache-1.1.jar, jta.jar, log4j-1.2.9.jar, 47 c3p0-0.9.0.jar 47 48 48 49 Note: Most of the jar files above are other 3rd-party components used by Hibernate. … … 101 102 ----------------- 102 103 A JDBC driver for the MySQL database from MySQL. This library is only 103 neede if you are using MySQL as your database.104 needed if you are using MySQL as your database. 104 105 105 106 More info : http://www.mysql.com/products/connector/j/ … … 107 108 License : GPL (gpl.license.txt) 108 109 Jar files : mysql-connector-java-3.0.15-ga-bin.jar 110 111 112 PostgreSQL JDBC driver 113 ---------------------- 114 A JDBC driver for the PostgreSQL database. This library is only 115 needed if you are using PostgreSQL as your database. 116 117 More info : http://jdbc.postgresql.org/ 118 Version : 8.0.313 119 License : BSD License (postgres.license.txt) 120 Jar files : postgresql-8.0-313.jdbc3.jar 109 121 110 122 -
trunk/src/clients/web/installweb.bat
r1455 r1478 49 49 SET CP=%CP%;%WEBINF%/lib/antlr-2.7.5H3.jar 50 50 51 REM C3P0 Connection pool manager 52 SET CP=%CP%;%WEBINF%/lib/c3p0-0.9.0.jar 53 51 54 REM MySQL JDBC driver 52 55 SET CP=%CP%;%WEBINF%/lib/mysql-connector-java-3.0.15-ga-bin.jar -
trunk/src/hibernate.cfg.xml
r1470 r1478 30 30 <session-factory> 31 31 <property name="cache.use_query_cache">true</property> 32 <property name="connection.provider_class"> 33 org.hibernate.connection.C3P0ConnectionProvider 34 </property> 35 <property name="c3p0.min_size">1</property> 36 <property name="c3p0.max_size">20</property> 37 <property name="c3p0.timeout">3600</property> 32 38 <property name="cache.provider_class">org.hibernate.cache.EhCacheProvider</property> 33 39 <class-cache -
trunk/src/install/includes
r1466 r1478 49 49 CP=$CP:$WEBINF/lib/antlr-2.7.5H3.jar 50 50 51 # C3P0 Connection pool manager 52 CP=$CP:$WEBINF/lib/c3p0-0.9.0.jar 53 51 54 # MySQL JDBC driver 52 55 CP=$CP:$WEBINF/lib/mysql-connector-java-3.0.15-ga-bin.jar -
trunk/src/install/initdb.bat
r1466 r1478 49 49 SET CP=%CP%;%WEBINF%/lib/antlr-2.7.5H3.jar 50 50 51 REM C3P0 Connection pool manager 52 SET CP=%CP%;%WEBINF%/lib/c3p0-0.9.0.jar 53 51 54 REM MySQL JDBC driver 52 55 SET CP=%CP%;%WEBINF%/lib/mysql-connector-java-3.0.15-ga-bin.jar -
trunk/src/test/run.bat
r1466 r1478 42 42 SET CP=%CP%;../../lib/dist/antlr-2.7.5H3.jar 43 43 44 REM C3P0 Connection pool manager 45 SET CP=%CP%;../../lib/dist/c3p0-0.9.0.jar 46 44 47 REM MySQL JDBC driver 45 48 SET CP=%CP%;../../lib/dist/mysql-connector-java-3.0.15-ga-bin.jar -
trunk/src/test/run.sh
r1466 r1478 41 41 CP=$CP:../../lib/dist/antlr-2.7.5H3.jar 42 42 43 # C3P0 Connection pool manager 44 CP=$CP:../../lib/dist/c3p0-0.9.0.jar 45 43 46 # MySQL JDBC driver 44 47 CP=$CP:../../lib/dist/mysql-connector-java-3.0.15-ga-bin.jar
Note: See TracChangeset
for help on using the changeset viewer.