in reply to Re: connect database
in thread connect database
I now changed it into this:
#!usr/bin/perl use 5.6.1; use strict; use warnings; use DBI; my$dbh = DBI->connect("DBI:Pg:dbname=five; port=5432", 'postgres', '', +{ RaiseError => 1, AutoCommit => 0 }) or die "kon de database niet openen!";
and what is the meaning of that?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: connect database
by ikegami (Patriarch) on Jan 08, 2009 at 13:09 UTC | |
by Bass-Fighter (Beadle) on Jan 08, 2009 at 13:15 UTC |