Sybase 2 Barcode Reader User Manual


 
Importing XML
412 DataWindow .NET
The name element has two children, emp_fname and emp_lname, that
contain column references to those columns.
The template exports and imports the
dept_id DataWindow column using the
attribute of the employee element. It exports and imports the
emp_id,
emp_fname, and emp_lname columns using the column references in the
elements. The following shows the beginning of the XML exported using this
template:
<?xml version="1.0" encoding="UTF-16LE"
standalone="no"?>
<employee_list>
<before_detail_marker>102</before_detail_marker>
<employee dept_id="100">
<emp_id>102</emp_id>
<emp_fname>static text content</emp_fname>
<name>
<emp_fname>Fran</emp_fname>
<emp_lname>Whitney</emp_lname>
</name>
</employee>
<employee dept_id="100">
<emp_id>105</emp_id>
<emp_fname>static text content</emp_fname>
<name>
<emp_fname>Matthew</emp_fname>
<emp_lname>Cobb</emp_lname>
</name>
</employee>
...