source: gs3-installations/computing50/trunk/sites/computing50/ConnectProxyExpress.deprecated/README.txt@ 38451

Last change on this file since 38451 was 38451, checked in by davidb, 7 months ago

Additional info worked out about Tbl_*.xm tables

File size: 4.1 KB
Line 
1
2Tbl_Per_Events -> Its ID becomes a match in Tbl_Per_Events under the field Person[col 2]
3 e.g. Found [ID=119] with 2nd entry in record <4> == Tbl_People[ID] ALBERT, Sam back in in Tbl_People
4 [Type+of+Event] -> <25> = Attestation in Tbl_Event
5
6 To work out the photo that goes with this ...
7
8 Take the Tbl_Per_Events <ID> (e.g 119) and find this in Tbl_Pictures under Per_EventsID[col 6]
9 => Gives us everything we need to display image (show description??)
10
11 Then finds another 2nd entry in record <4> = ALBERT, Sam back in Tbl_People
12 [Type+of+Event] -> <10> = Medals in Tbl_Event
13
14
15Tbl_Pictures
16 ID: is not sequential, jumps up
17 ... actually found lower ID nums later on (e.g. ID 1, Salut Wairo Team photo + text used in Credits)
18
19
20 (in ACCESSDB) MajorEventsID is a <string>, with spaces [e.g., "Maori at Lemnos Island - Sarpi Camp."] -- Timeline related?
21 Actually an int in Tbl_Pictures, For example:
22 Battle of Messines -- <c>65</c> L139296 in Tbl_Pictures
23
24 Per_EventsID is an <int> that maps back to Tbl_People ID
25
26 LocationID is a <string>!
27
28 CoolStuff -- which (collection, in DL parlance) it is in
29
30 Stream -- marks it out for swirling down the centre
31
32
33Tbl_Per_Events
34 -- EventID (int)
35 -- Person (int, ID of the person in Tbl_People)
36 -- Type_of_Event (int, ID in Tbl_EventTypes)
37 -- then: EventDate, Description
38 For example:
39 <r>
40 <c>109</c>
41 <c>1</c> Tbl_People[ID=1] => Surname: ALLISON
42 <c>25</c> Tbl_EventType[ID=25] => EventType: Attestation
43 <c />
44 <c />
45 </r>
46
47
48
49Tbl_EventType
50 -- shows up as the Administration Menu in AccessDB
51 -- List of icons to show, e.g. Poppy, Wounded, Diary/Letters, Theatres of War
52 -- ~ 50% link to icons, others have the Icon field blank (e.g. Attestation)
53
54 <!-- EventTypeid, Order, EventType, Description, Icon -->
55 For example:
56 <r>
57 <c>1</c>
58 <c>1</c>
59 <c>Birth</c>
60 <c />
61 <c>C:\Table\Projects\SaluteWairoa\Attachments\Pictures\Icons\Birth.jpg</c>
62 </r>
63
64
65Tbl_CoolStuff == Conceptual match with GS Collections
66 -- Defines what the collections are, has ID, uses 'Order' to list them
67 -- Specifies a <string> for 'Title' [col=2] which Tbl_Pictures then matches to
68
69
70Tbl_Timeline
71 -- Specifies the containers that are available as timelines (e.g. for Wairoa WW1, Main-Timeline and Maori-Timeline)
72 -- Use Tbl_MajorEvents to get elments and text to place on the TimeLine
73 -- (Presumably???) Use Tbl_Pictures to find photos that intersect Tbl_Timeline Container + Tbl_MajorEvents
74
75
76Tbl_Maps
77
78 ... to investiage ... likely used Location X,Y to put poppies on map
79
80
81Tbl_Acknowledgements
82 -- Drives the 4 Labels and Thumbnails that appear under "Credits"
83 : SPONSORS, Salute Wairoa Team, Biography, Acknowledgements
84
85 Tbl_Sponsors
86 -- does the content of this turn up in Interface?
87 -- Maybe used to hand-craft the image that is shown, Tbl_Pictures, ID=3793
88
89 Team -- Hardired to show Tbl_Pictures ID=1
90 Biography -- Hardwired to show Tbl_Pictures ID=3794 ????
91 Acknoweldgements -- Hardwired to ID=3796
92
93
94
95
96Request/?query=SELECT+ID,FirstName,MiddleName,LastName,DOB,DOD,MainPicture,Summary,Type,Feature,ServiceNo+FROM+Tbl_People+WHERE+(Display+=+true)
97Request/?query=SELECT+EventTypeid,Order,EventType,Description,Icon+FROM+Tbl_EventType
98Request/?query=SELECT+Eventid,Person,[Type+of+Event],EventDate,Description+FROM+Tbl_Per_Events
99
100Request/?query=SELECT+ID,Pictures,Title,Description,MajorEventsID,Per_EventsID,LocationID,MapID,[Cool+stuff],Stream,Audio,LocationY,LocationX,Achnolodgements,Order+FROM+Tbl_Pictures
101
102Request/?query=SELECT+ID,Video,Title,Description,Order,Pictures+FROM+Tbl_Videos
103Request/?query=SELECT+ID,Title,Description,Icon,Dynamic+FROM+Tbl_Timeline
104Request/?query=SELECT+ID,Event,Description,EventDate,Timeline+FROM+Tbl_MajorEvents
105Request/?query=SELECT+ID,Title,Description,Order+FROM+Tbl_CoolStuff
106Request/?query=SELECT+Team,Name,Role+FROM+Team
107Request/?query=SELECT+ID,Organisation,Contribution,Logo+FROM+Tbl_Sponsors
108Request/?query=SELECT+ID,Order,Title,Pictures+FROM+Tbl_Acknowledgements
109Request/?query=SELECT+Mapsid,Order,MapName,Description,Picture,Dynamic+FROM+Tbl_Maps
Note: See TracBrowser for help on using the repository browser.