Re: [PHP] using existing mysql connection in a php extension
From: Gareth Williams (gareth_at_venditor.com)
Date: 10/31/03
- Previous message: Erwin Moller: "Re: PHP + MYSQL +APACHE + FORMS"
- In reply to: Adrian: "using existing mysql connection in a php extension"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Date: Fri, 31 Oct 2003 14:24:24 +0100 To: php-general@lists.php.net
Hi there,
Try this:
mysql_pconnect($_host, $_user, $_password) or die("Could not connect:
" . mysql_error());;
This open a permanent mysql connection. The first time you run it, it
opens the connection, and the second time, etc, it just uses the one
already opened.
On Friday, Oct 31, 2003, at 13:14 Europe/Amsterdam, Adrian wrote:
> hello,
>
> is it possible to use an existing mysql connection created from
> php-code $conn=mysql_connect('localhost','root','secret'); in an
> php-extensions, e.g. by giving the ressource id to the extension as an
> argument: my_extemsion_function('do_something',$conn); ?
> because if i have to connect to the mysql server again from my
> extension, i'll lose the performance-improvement gained from the
> faster C++-code.
>
> --
> Adrian
> mailto:adrian@planetcoding.net
> www: http://www.planetcoding.net
> www: http://www.webskyline.de
>
> --
> PHP General Mailing List (http://www.php.net/)
> To unsubscribe, visit: http://www.php.net/unsub.php
>
- Previous message: Erwin Moller: "Re: PHP + MYSQL +APACHE + FORMS"
- In reply to: Adrian: "using existing mysql connection in a php extension"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Relevant Pages
|