watch your DBI scripts if you are upgrading to 7.1

From: newsreader(at)mediaone(dot)net
To: pgsql-general(at)postgresql(dot)org
Subject: watch your DBI scripts if you are upgrading to 7.1
Date: 2001-04-18 09:57:40
Message-ID: 20010418055739.A8902@dragon.universe
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

psql no longer works the systax
$ psql dbname(at)hostname

In my DBI scripts I had
$d=DBI->connect('dbi:Pg:dbname=dbname(at)hostname','user')
That must be rewritten as
$d=DBI->connect('dbi:Pg:dbname=dbname;host=hostname','user')

Browse pgsql-general by date

  From Date Subject
Next Message Tony Grant 2001-04-18 10:35:04 Two questions
Previous Message Konstantinos Agouros 2001-04-18 08:40:03 How to read a query plan?