[Koha-bugs] [Bug 10643] Inappropriate uses of $sth->finish() in C4::ClassSource.pm

bugzilla-daemon at bugs.koha-community.org bugzilla-daemon at bugs.koha-community.org
Fri Aug 2 16:30:51 CEST 2013


http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=10643

Galen Charlton <gmcharlt at gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |gmcharlt at gmail.com

--- Comment #3 from Galen Charlton <gmcharlt at gmail.com> ---
(In reply to Srdjan Jankovic from comment #2)
> I propose something even better then - get rid of prepare() all together.
> For example:
> 
> * GetClassSources():
> return $dbh->selectall_hashref("SELECT...", undef, 'cn_source');
> 
> * AddClassSource()
> return $dbh->do("INSERT...", undef, @params)
> 
> etc. How often are those used to get advantage of prepare_cached()?
> Good databases (tm) cache queries anyway, however not sure that MySQL does.

Getting rid of $sth->finish() and replacing prepare_cached() with prepare()
suffices as a minimal change, but doesn't preclude going further and using
selectall_hashref.

As far as the current patch is concerned, I do think it would be useful to at
least get rid of prepare_cached().

-- 
You are receiving this mail because:
You are watching all bug changes.


More information about the Koha-bugs mailing list