Hi Folks,
I have a simple traditional database, ans I'd like to connect via SQLPlus and submit a query to get XML back. Whats the easiest way to do this ?
.. to make an output like....
PS. I dont have Oracle 9AS
I have a simple traditional database, ans I'd like to connect via SQLPlus and submit a query to get XML back. Whats the easiest way to do this ?
Code:
select order.* , orderlines.*
from MyAppOrders order,
MyAppOrderLines orderlines,
where ...
.. to make an output like....
Code:
<order>
<column1> ... </column1>
<orderlines key=1>
<column1> ... </column1>
</orderlines>
</order>
PS. I dont have Oracle 9AS