[
Lists Home |
Date Index |
Thread Index
]
- From: Mike Geiger <mike@PerCurrence.com>
- To: "'xml-dev@lists.xml.org'" <xml-dev@lists.xml.org>
- Date: Tue, 14 Nov 2000 15:41:19 -0800
PerCurrence makes the PerXML transformation engine which is designed to do
exactly that. It uses an XML based declarative language to represent the
data connectivity and display template. Here is a sample fragment:
<start xmlns:PerXML="www.percurrence.com">
<PerXML:sql id="rs1" connect="Northwind" uid="percurrence"
pw="percurrence" encoding="xml" sql="SELECT * FROM Customers where
CompanyName like 'Alfreds%' order by CompanyName" null=""
apply="CustomerList"/>
<CustomerList>
<CustomerMailLabel>
<ContactName>$rs1("ContactName")</ContactName>
</CustomerMailLabel>
</CustomerList>
</start>
The download and client software are free at www.percurrence.com . This
comes with a very concise tutorial.
--Mike
|