Re: Re: threading problems in linux C client

2004-06-30 Thread darren
darren <[EMAIL PROTECTED]> Date: Wed, 30 Jun 2004 20:06:40 -0500 Subject: Re: threading problems in linux C client If you have multiple threads accessing the same connection remember to make sure that only one thread enters mysql_query() mysql_connect() or mysql_store_result() after you stor

Re: threading problems in linux C client

2004-06-30 Thread Eric Bergen
If you have multiple threads accessing the same connection remember to make sure that only one thread enters mysql_query() mysql_connect() or mysql_store_result() after you store the result another thread will be able to use that connection without problems. -Eric On Wed, 30 Jun 2004 11:01:35 +00

threading problems in linux C client

2004-06-30 Thread darren
Hi all, I am writing a multi-threaded client that requires shared access to a single MySQL connection. The environment is Redhat 7.3 with the patched mysql-3.23.58-2.71.i386.rpm installed and compiled with -l libmysqlclient_r. The connection is made from the main thread and a MYSQL_RES* myres d