jammer1221
Programmer
Hey all,
I was wondering how the following example would effect my scripts performance: Select 50-1000 rows from a mysql db and convert it to XML type data. i.e.
I've never done any kind of processing like this (with ~1000 rows of data) and was wondering what kind of load this would cause on the processor and how long this script would take to process? I'm just looking for a simple estimate from some of you experienced developers!
Thanks,
Matt
I was wondering how the following example would effect my scripts performance: Select 50-1000 rows from a mysql db and convert it to XML type data. i.e.
Code:
<item> <!--this is row 1-->
<title>Value</title> <!--title is the column name and value is the value of that row and column-->
</item>
<item><!--this is row 2-->
...
</item>
Thanks,
Matt