Re: on connect/on disconnect

From: Markus Schaber <schabi(at)logix-tt(dot)com>
To: pgsql-sql(at)postgresql(dot)org
Subject: Re: on connect/on disconnect
Date: 2006-09-11 10:31:43
Message-ID: 45053B0F.5020109@logix-tt.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hi, Robert,

Robert Edwards wrote:
> (this is my first post to this list...)

Welcome here. :-)

> I am wondering if Postgres, and/or SQL in general, has a facility to
> run a function at connection set-up time (after a successful connection
> attempt) and/or at session completion (or disconnect)?

Most JDBC connection pooling implementations will do that, at least for
connection and session setup. (JBoss is one of them.)

> I want to pre-populate a table (actually an INSERT rule on a view)
> with some user-specific data that is unlikely to change during the
> session and which is "difficult" to process (ie. affects performance
> to do it too often).

The problem here is that the INSERT rule might be globally visible to
other, concurrent users on the database.

Could you explain what exactly you want to achieve, may be we find a
better way to do the whole thing.

> Purely session/connection-based temporary tables would also do what
> I need, but temporary tables don't seem to be able to work that way.

What's the exact problem with them?

Markus
--
Markus Schaber | Logical Tracking&Tracing International AG
Dipl. Inf. | Software Development GIS

Fight against software patents in EU! www.ffii.org www.nosoftwarepatents.org

In response to

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Markus Schaber 2006-09-11 10:36:59 Re: on connect/on disconnect
Previous Message Penchalaiah P. 2006-09-11 07:46:48 hi i am gettin error when i am deleting a function from my pgadmin