Re: perl access

Поиск
Список
Период
Сортировка
От jseymour@linxnet.com (Jim Seymour)
Тема Re: perl access
Дата
Msg-id 20040615004858.A79B2430E@jimsun.linxnet.com
обсуждение исходный текст
Ответ на perl access  (Tom Allison <tallison@tacocat.net>)
Ответы Re: perl access  (Tom Allison <tallison@tacocat.net>)
Список pgsql-general
Tom Allison <tallison@tacocat.net> wrote:
>
> I'm stuck on something stupid.
>
> I'm trying to use perl to open up a database handle and I can't find the
> right database dsn string.
>
> my $data_source = "dbi:Pg:mydatabase";
> my $username = "mydatebasereader";
> my $auth = "secret";
>
> my $dbh = DBI->connect($data_source, $username, $auth);
>
>
>
> DBI connect('postfix','postfix',...) failed: missing "=" after "postfix"
> in connection info string at /home/tallison/bin/perl.pl line 21
>
> I've tried variations on the $data_source but I'm afraid I'm working on
> a hit-n-miss process.
>
> Can someone point me?

Like this:

my $data_source = "dbi:Pg:dbname=mydatabase";
                          ^^^^^^^

Jim

В списке pgsql-general по дате отправления:

Предыдущее
От: Tom Allison
Дата:
Сообщение: perl access
Следующее
От: Tom Allison
Дата:
Сообщение: pg_hba auth failure