So...

How are people turning information from SQL databases into XML for AxKit?
I'm thinking the best way to do this would be to use a provider.  Has
anyone done this yet?

My concept is that a generic provider could take the rows returned by DBI
and parse them into XML.

So a query like:  SELECT id, name FROM foo

which returns:
id name
-- ----
1  fish
2  cat

would come out of the provider like so

<foo>
 <id>1</id>
 <name>fish</name>
</foo>
<foo>
 <id>1</id>
 <name>fish</name>
</foo>

Has anyone already written this provider?  Am I on the right track in
assuming this would be how to do it?


---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to