Re: Multithreaded libpq?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: David George <david(at)logical(dot)net>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Multithreaded libpq?
Date: 2000-07-24 16:43:14
Message-ID: 660.964456994@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

David George <david(at)logical(dot)net> writes:
> Does libpq support multithreaded frontend apps?

libpq is thread-ignorant. You can use it in a multithreaded app,
but it's up to you to ensure that no two threads try to operate on
the same PQconn object at the same time.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Kyle 2000-07-24 16:48:35 Re: Problem with inserting newlines and ' characters
Previous Message Tom Lane 2000-07-24 16:41:34 Re: Alter table with arrays