1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!-- Copyright (c) 2013 hangum. All rights reserved. This program and the
3 accompanying materials are made available under the terms of the GNU Lesser
4 Public License v2.1 which accompanies this distribution, and is available
5 at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html Contributors: hangum
6 - initial API and implementation -->
8 PUBLIC "-//ibatis.apache.org//DTD SQL Map Config 2.0//EN"
9 "http://ibatis.apache.org/dtd/sql-map-config-2.dtd">
12 <!-- set setting options -->
13 <properties resource="com/hangum/tadpole/engine/config/commons/setting.propertis"/>
15 <transactionManager type="JDBC">
16 <dataSource type="DBCP">
17 <property name="JDBC.Driver" value="org.sqlite.JDBC" />
18 <property name="JDBC.ConnectionURL" value="${JDBC.ConnectionURL}" />
19 <property name="JDBC.Username" value="${JDBC.Username}" />
20 <property name="JDBC.Password" value="${JDBC.Password}" />
22 <!--OPTIONAL PROPERTIES BELOW -->
23 <property name="Pool.MaximumActiveConnections" value="50" />
24 <property name="Pool.MaximumIdleConnections" value="5" />
25 <property name="Pool.MaximumWait" value="1000" />
27 Use of the validation query can be problematic. If you have
28 difficulty, try without it.
30 <property name="Pool.ValidationQuery" value="SELECT name FROM sqlite_master where 1 = 0" />
32 <property name="Pool.LogAbandoned" value="true" />
33 <property name="Pool.RemoveAbandoned" value="true" />
34 <property name="Pool.RemoveAbandonedTimeout" value="60000" />
39 <sqlMap resource="com/hangum/tadpole/engine/query/internal/system/Tadpole-System-SQLiteSQL.xml" />
41 <sqlMap resource="com/hangum/tadpole/engine/query/internal/system/Tadpole-System-Common.xml" />
44 <sqlMap resource="com/hangum/tadpole/engine/query/internal/system/Tadpole-System-User.xml" />
46 <sqlMap resource="com/hangum/tadpole/engine/query/internal/system/Tadpole-System-SQL-Template.xml" />
47 <sqlMap resource="com/hangum/tadpole/engine/query/internal/system/Tadpole-System-AccessControl.xml" />
48 <sqlMap resource="com/hangum/tadpole/engine/query/internal/system/Tadpole-System-ExecuteSQL.xml" />