-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdb-data-config.xml
More file actions
26 lines (26 loc) · 816 Bytes
/
db-data-config.xml
File metadata and controls
26 lines (26 loc) · 816 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?xml version="1.0" encoding="UTF-8"?>
<dataConfig>
<dataSource
type="JdbcDataSource"
name="source1"
driver="com.mysql.jdbc.Driver"
url="jdbc:mysql://mysql/db"
user="root"
password="root"
batchSize="-1" />
<document>
<entity
name="test"
query="select * from Niederlaender"
>
<field column="ID" name="ID" />
<field column="QID" name="QID" />
<field column="lat" name="lat" />
<field column="lon" name="lon" />
<field column="description" name="description" />
<field column="text" name="text" />
<field column="link" name="link" />
<field column="datum" name="datum" />
</entity>
</document>
</dataConfig>