in reply to Re: Re: Re: Re: mod_perl was hosed by a bind variable
in thread mod_perl was hosed by a bind variable
To be a pedant, your benchmark is highly misleading. prepare() might be faster, but the speed gain is barely visible when you actually execute the query. When you're using a database that supports prepared queries (e.g., Oracle), the cached form is a win. In the example you show, no communication with the server happens, since current versions of MySQL don't support prepared queries. What you're seeing is bookkeeping overhead.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re^5: mod_perl was hosed by a bind variable
by tantarbobus (Hermit) on Feb 02, 2004 at 00:56 UTC |