XML & Database
I am new to xml.
I am not able to figure out how to load data from an RDBMS to create an xml
file containing that data.
[127 byte] By [
Amit] at [2007-11-9 14:55:23]

# 1 Re: XML & Database
Amit,
This question I believe is asked time and again. It must be there in the
archives of last month or so. You can check up with that. Meanwhile, ASP
can help you read data thru ADO, and then generate the output as tagged elements:
<%...
....
poRecordset.open"employee", poConnection, adOpenStatic
While Not poRecordset.EOF%>
<name><%=poRecordset("name").Value%></name>
<age><%=poRecordset("age").Value%></age>
<address><%=poRecordset("address").Value%></address>
<% poRecordset.Movenext
Wend
...
...
%>
Rohit