-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdatasources.json
More file actions
58 lines (58 loc) · 867 Bytes
/
datasources.json
File metadata and controls
58 lines (58 loc) · 867 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[
{
"id": 1,
"IPAddress": "ip1",
"port": 123,
"DBname": "dbName1",
"username": "username1",
"password": "password1",
"DBtype": "MySQL",
"tables": [
{
"tableName" : "test1",
"columns": [
{
"columnName": "field11"
},
{
"columnName": "field12"
}
]
},
{
"tableName" : "test2",
"columns": [
{
"columnName": "field11"
},
{
"columnName": "field12"
},
{
"columnName": "field13"
}
]
}
]
},
{
"id": 2,
"IPAddress": "ip2",
"port": 321,
"DBname": "dbName2",
"username": "username2",
"password": "password2",
"DBtype": "MySQL",
"tables": [
{
"tableName" : "test2",
"columns": [
{
"columnName": "field21",
"columnName": "field22"
}
]
}
]
}
]