Pooly wrote:
Hi,
2005/9/24, Lefteris Tsintjelis <[EMAIL PROTECTED]>:
Sujay Koduri wrote:
I think mysql does not allow multiple threads to act on the same connection.
You have to create a connection pool and pick one for each thread
You can use one connection for all your thread.
Just b
Hi,
2005/9/24, Lefteris Tsintjelis <[EMAIL PROTECTED]>:
> Sujay Koduri wrote:
>
> > I think mysql does not allow multiple threads to act on the same connection.
> > You have to create a connection pool and pick one for each thread
>
You can use one connection for all your thread.
Just be sure to
7 PM
To: Sujay Koduri
Cc: mysql@lists.mysql.com
Subject: Re: Multithread handling of Connect/Close
Sujay Koduri wrote:
> I think mysql does not allow multiple threads to act on the same
connection.
> You have to create a connection pool and pick one for each thread
Either that or keep ha
Sujay Koduri wrote:
I think mysql does not allow multiple threads to act on the same connection.
You have to create a connection pool and pick one for each thread
Either that or keep handling them on a per thread basis but do I have to also
do mysql_server_init/end on a per child then, or just