Re: whoa!

2009-03-01 Thread Andy Shellam
Hi PJ, By the look of your language you're using PHP to communicate with MySQL. Is this assumption correct? If so you don't need to use that section of the manual - that's the C API for programmers developing applications in the C or C++ language. PHP is a whole different ball game and you

Re: whoa!

2009-02-28 Thread Andy Shellam
Hi PJ, Having been a C programmer for a while this makes perfect sense to me. You call mysql_(real)_query to execute the query and get the results from the server. Because the MySQL library doesn't know when you've finished with the result-set, you have to tell it to write the results to me

whoa!

2009-02-27 Thread PJ
What is this supposed to mean from the manual: The use of |mysql_num_rows()| depends on whether you use |mysql_store_result()| or |mysql_use_result()|