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
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