]> git.koha-community.org Git - koha.git/commit
Bug 7184 raise mySQL error if debug is set
authorPaul Poulain <paul.poulain@biblibre.com>
Sun, 6 Nov 2011 08:36:52 +0000 (09:36 +0100)
committerChris Nighswonger <chris.nighswonger@gmail.com>
Wed, 16 Nov 2011 14:07:38 +0000 (09:07 -0500)
commit71f9b11addb1dc11e25a9dbed01d0f3ff45fd967
treef6ebd4ad4910d3dcc05fb6404c39b72f8acd9581
parent3032fd1d9e179d05377027ab84279ba3faf8f5f5
Bug 7184 raise mySQL error if debug is set

Before this patch, if a mySQL occured in Koha (any error), then the user was seeing nothing.
With this patch, if DEBUG is set in Koha VirtualHost, any mySQL error will make Koha die and display the SQL error

Step to test:
=== BEFORE PATCH ===
go anywhere, and change a mySQL statement to make it invalid.
Launch a page using the SQL you've made wrong, you'll see nothing, except you won't see the expected results

=== AFTER PATCH ===
Modify koha-httpd.conf, and add the following line, in the virtualhost (if it does not already exist)
SetEnv DEBUG 1
restart/reload Apache
Launch the same page, you'll get a Perl statement saying something like:

DBD::mysql::st execute failed: <<blablabla SQL error>> at <<where the error was raised line <<error line>>
(cherry picked from commit 016e66c6f25fbe3b648bcb8dad8d59f80d11b992)

Signed-off-by: Chris Nighswonger <chris.nighswonger@gmail.com>
C4/Context.pm