Go to the first, previous, next, last section, table of contents.


Commands out of sync in client

If you get Commands out of sync; You can't run this command now in you client code you are calling clients functions in the wrong order!

This can for example happen if you are using 'mysql_use_result()' and try to execute a new query before you have done a 'mysql_free_result()'. This can also happen if you try to execute two queries, that returns data, without a mysql_use_result() or mysql_store_result() between.


Go to the first, previous, next, last section, table of contents.