Re: [INTERFACES] Re: thread-safe libpq and DBD::Pg

From: Goran Thyni <goran(at)bildbasen(dot)se>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-interfaces(at)postgreSQL(dot)org
Subject: Re: [INTERFACES] Re: thread-safe libpq and DBD::Pg
Date: 1998-08-09 17:13:39
Message-ID: 35CDD8C3.8539ADA7@bildbasen.se
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-interfaces

Tom Lane wrote:
>
> Goran Thyni <goran(at)bildbasen(dot)se> writes:
> > DBD::Pg dos indeed use PQconnectdb(),
> > but at least in my light test I get SEGV in $sth->fetch.
> > The problems are probably somewhere in DBDI or DBD::Pg or
> > somewhere in the interaction of the parts.
>
> FWIW, I finally got around to installing Perl5 (5.004 pl4 to
> be specific), and so far the perl5 interface supplied with pgsql
> seems to work fine. I only just now realized that what you
> are talking about is something different ... the code included
> in the distribution calls itself Pg not DBD::Pg. What versions
> of everything are you using?

I am using perl 5.005_01 with threads support and DBI/DBD::Pg.
DBI/DBD is the "standard" RDBMS-interface for perl available
from CPAN.

> > I am looking into how much work a "pure Perl" interface
> > should amount to. Using native perl IO and pgsql-fe/be-protocol
> > should make "pgsql-clienting" even more portable over platforms.
>
> Of course, it will also mean that you have to maintain that code
> every time we change the fe/be protocol ... there is a change
> upcoming for 6.4.

I have done some experimenting:
The easy parts are done (if not cleanly), connect/exec/close.
The hairy parts is to extract row descriptors and tuples
from select/fetch statements.

I am working against the current CVS tree, are there more
protocol changes in the pipeline?

regards,
Göran.

In response to

Browse pgsql-interfaces by date

  From Date Subject
Next Message Bruce Momjian 1998-08-09 17:34:39 Re: [HACKERS] thread-safe libpq and DBD::Pg
Previous Message Tom Lane 1998-08-09 15:49:25 Re: [HACKERS] thread-safe libpq and DBD::Pg