SQLObjectList format |
Top Previous Next |
Many Remote Access functions return a list of SQLObjects in XML format. That format will include the Name, ObjType and, if the object is a User, the Login value. The output will look similar to the following:
The list structure will be customized for the object type. So, for example, a list of Reports would look like this:
<ReportList> <Report> <Name>Report One</Name> <ObjType>diagram</ObjType> </Report> <Report> <Name>Time of day</Name> <ObjType>chart</ObjType> </Report> </ReportList>
A list of studies might look like this:
<StudyList> <Study> <Name>HWY 23</Name> <ObjType>routemp</ObjType> </Study> <Study> <Name>HWY 23 at Broadway</Name> <ObjType>intersection</ObjType> </Study> </StudyList> |