summaryrefslogtreecommitdiff
path: root/Config.xml
blob: f4d4a45d2f63777658900f0735980c08c609e866 (plain)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
<TLConfig>
<Connect>Driver={Microsoft Access Driver (*.mdb)};DBQ=E:\\tuglist00.mdb</Connect>
<DisplayNames>
Tug Name,
Registration Number,
Euro Number,
Callsign,
Nationality,
Specifications,
Link,
Build Date,
Scrap Date,
BRT,
PK,
Owner's Name,
Owner's Nationality,
Owner's Description,
Owner's Address,
Wharf Short Name,
Wharf Nationality,
Wharf Description,
Wharf Address,
Old Names
</DisplayNames>
<ColumnNames>
tuglist00.name,
tuglist00.regNR,
tuglist00.euroNR,
tuglist00.callsign,
tuglist00.nat,
tugdetails.specifications,
tugdetails.link,
tuglist00.build,
tuglist00.scrap,
tuglist00.brt,
tuglist00.pk,
owners.short,
owners.nat,
owners.description,
owners.adres,
wharves.short,
wharves.nat,
wharves.description,
wharves.adres,
tuglist00.onames
</ColumnNames>
<Query>
select tuglist00.name,
	   tuglist00.regNR,
	   tuglist00.euroNR,
	   tuglist00.callsign,
	   tuglist00.nat,
	   tugdetails.specifications,
	   tugdetails.link,
	   tuglist00.build,
	   tuglist00.scrap,
	   tuglist00.brt,
	   tuglist00.pk,
	   owners.short,
	   owners.nat,
	   owners.description,
	   owners.adres,
	   wharves.short,
	   wharves.nat,
	   wharves.description,
	   wharves.adres,
	   tuglist00.onames
	   		from tugdetails,
				 tuglist00,
				 owners,
				 wharves
			where
				 tugdetails.tugNR=tuglist00.tugNR and
				 tuglist00.ownerNR=owners.ownerNR and
				 tugdetails.wharfNR=wharves.wharfNR
</Query>
</TLConfig>