You can have MySQL return query results to you in well-formed XML
shell>mysql --xml
mysql> SELECT * FROM test.stories;
<?xml version="1.0"?>
<resultset statement="SELECT * FROM test.stories">
<row>
<id>1</id>
<headline>This is a test</headline>
<tstamp>2005-07-28 00:14:57</tstamp>
</row>
<row>
<id>2</id>
<headline>This is the second test</headline>
<tstamp>2005-07-28 00:15:11</tstamp>
</row>
</resultset>
2 rows in set (0.11 sec)
shell>mysql --xml
mysql> SELECT * FROM test.stories;
<?xml version="1.0"?>
<resultset statement="SELECT * FROM test.stories">
<row>
<id>1</id>
<headline>This is a test</headline>
<tstamp>2005-07-28 00:14:57</tstamp>
</row>
<row>
<id>2</id>
<headline>This is the second test</headline>
<tstamp>2005-07-28 00:15:11</tstamp>
</row>
</resultset>
2 rows in set (0.11 sec)
No comments:
Post a Comment