Re: [libdbi-users] Persistent Connections with MySQL

2006-04-24 Thread Markus Hoenicka
Martin Kutschker <[EMAIL PROTECTED]> was heard to say: > I'm not aware of any Mysql switch for that. I've only encountered the > desrcribed method with a webserver and PHP, Perl and in the new Apache 2.2 DB > layer. > > Could you point me to the part of the Mysql docs where this switch is > descr

Re: [libdbi-users] Persistent Connections with MySQL

2006-04-24 Thread Martin Kutschker
"Markus Hoenicka" <[EMAIL PROTECTED]> writes on Sun, 23 Apr 2006 21:09:45 +0200 (METDST): > Martin Kutschker writes: > > It's just a pooling of a long living enviroment, eg in http > > servers. > > I'm still confused. What you describe here sounds like persistent > connections are a server-only

Re: [libdbi-users] Persistent Connections with MySQL

2006-04-23 Thread Markus Hoenicka
Martin Kutschker writes: > It's just a pooling of a long living enviroment, eg in http servers. Usually > the server spawns a number of processes that server multiple requests. Each > of these processes may now have a pool of DB connections. Whenever the > client API request a connection wit

Re: [libdbi-users] Persistent Connections with MySQL

2006-04-23 Thread Martin Kutschker
"Markus Hoenicka" <[EMAIL PROTECTED]> writes on Fri, 21 Apr 2006 21:46:48 +0200 (METDST): > Hi Greg, > > I'm afraid there is no such support in the library. Looking at Google > and at the MySQL docs I couldn't even figure out how persistent > connections are created. It's just a pooling of a l

[libdbi-users] Persistent Connections with MySQL

2006-04-21 Thread Markus Hoenicka
Hi Greg, I'm afraid there is no such support in the library. Looking at Google and at the MySQL docs I couldn't even figure out how persistent connections are created. Are there any C code samples out there that accomplish this? regards, Markus Greg Taylor writes: > Greetings, > > I was

[libdbi-users] Persistent Connections with MySQL

2006-04-21 Thread Greg Taylor
Greetings, I was looking through the documentation and saw no mention of persistent connections in MySQL. Is this left up to the developer to implement, rather than used as a flag of some sort? If so, are there any example programs out there that use libdbi and an implementation of persist