Note that there are some explanatory texts on larger screens.

plurals
  1. POhow to convert database tables into xml files without using a programming language
    primarykey
    data
    text
    <p>I want to convert schema table relations into xml file without using a programming language. I just want to how how it works. Below are my database tables. </p> <pre><code>User(id, name, address) 10 john ca 20 marsh ny Account(aid, title, balance, id) 1 john 2000 10 2 marsh 3000 20 Transaction(tid, date, amount, type, aid) 100 1feb 500 Dr 1 300 3mar 100 Cr 2 </code></pre> <p><strong>Click this link to view all the schema tables:</strong> <a href="http://www.mediafire.com/view/?eu9ggoei7py2efr" rel="nofollow">http://www.mediafire.com/view/?eu9ggoei7py2efr</a></p> <p>Please check the above link to view all of my tables as i don't have greater than 10 points to upload an image here, so please check the link to view my tables. Should i make individual xml file for individual table? I'm really stuck at this point. The table which prints the transaction is more complicated. Please give me some suggestions. Thanks </p> <p><strong>Should i make three individual xml files for each table or just one??</strong></p> <pre><code>&lt;?xml version="1.0" ?&gt; &lt;user&gt; &lt;id&gt;10&lt;/id&gt; &lt;name&gt;john&lt;/name&gt; &lt;address&gt;ca&lt;/address&gt; &lt;id&gt;20&lt;/id&gt; &lt;name&gt;marsh&lt;/name&gt; &lt;address&gt;ny&lt;/address&gt; &lt;/user&gt; &lt;?xml version="1.0" ?&gt; &lt;account&gt; &lt;aid&gt;1&lt;/aid&gt; &lt;title&gt;john&lt;/title&gt; &lt;balance&gt;2000&lt;/balance&gt; &lt;id&gt;10&lt;/id&gt; &lt;aid&gt;2&lt;/aid&gt; &lt;title&gt;marsh&lt;/title&gt; &lt;balance&gt;3000&lt;/balance&gt; &lt;id&gt;20&lt;/id&gt; &lt;/account&gt; &lt;?xml version="1.0" ?&gt; &lt;transaction&gt; &lt;tid&gt;100&lt;/tid&gt; &lt;date&gt;1feb&lt;/date&gt; &lt;amount&gt;500&lt;/amount&gt; &lt;type&gt;Dr&lt;/type&gt; &lt;aid&gt;1&lt;/aid&gt; &lt;tid&gt;300&lt;/tid&gt; &lt;date&gt;3mar&lt;/date&gt; &lt;amount&gt;100&lt;/amount&gt; &lt;type&gt;Cr&lt;/type&gt; &lt;aid&gt;2&lt;/aid&gt; &lt;/transaction&gt; </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload