From 3e7a1022683846fddd255ebcede77bc54e664f5f Mon Sep 17 00:00:00 2001 From: arensb Date: Wed, 9 Oct 2002 14:04:49 +0000 Subject: [PATCH] Added a couple of comments. --- C4/Context.pm | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/C4/Context.pm b/C4/Context.pm index f1b4726080..23cd4fd917 100644 --- a/C4/Context.pm +++ b/C4/Context.pm @@ -15,6 +15,8 @@ # Koha; if not, write to the Free Software Foundation, Inc., 59 Temple Place, # Suite 330, Boston, MA 02111-1307 USA +# $Id$ + package C4::Context; use strict; use DBI; @@ -347,6 +349,9 @@ sub AUTOLOAD sub _new_dbh { my $db_driver = $context->{"config"}{"db_scheme"} || "mysql"; + # FIXME - It should be possible to use "MySQL" instead + # of "mysql", "PostgreSQL" instead of "Pg", and so + # forth. my $db_name = $context->{"config"}{"database"}; my $db_host = $context->{"config"}{"hostname"}; my $db_user = $context->{"config"}{"user"}; -- 2.39.2