Re: PSQLRC environment variable.

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: James Tanis <jtt(at)sysd(dot)com>
Cc: pgsql-patches(at)postgresql(dot)org
Subject: Re: PSQLRC environment variable.
Date: 2004-03-10 04:32:38
Message-ID: 2319.1078893158@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-patches

James Tanis <jtt(at)sysd(dot)com> writes:
> In message <154(dot)1078876735(at)sss(dot)pgh(dot)pa(dot)us>, Tom Lane avows:
>> Uh, why is that a good idea?

> As you will see, it takes a pretty contrived situation, but indeed I've got
> one :-)

> I have a software system which can use postgres if the user so wishes. We
> have a wrapper program for psql which logs in the caller to the database
> using stored values from another file. I wanted also to be able to set the
> search path so that everyone wouldn't have to constantly prepend our schema
> name to our table names in order to view our tables, so that immediatly
> suggested using .psqlrc. I do *not* however want to override (or overwrite)
> any .psqlrc they might have, neither do I want to *create* one if they
> don't have one since we call "exec psql" at the end of the wrapper and thus
> cannot clean it up. So if they do not have a $HOME/.psqlrc, I create one in
> a tmp directory inside of the directory tree where our software lives and
> set PSQLRC to point at it. It doesn't matter that we can't clean it up
> because it lives in our "space" (as it were).

But if they do have their own .psqlrc, doesn't that mean that you fail
to apply the change you need? It seems like this mechanism doesn't
achieve the results you actually want. Wouldn't setting search_path via
PGOPTIONS be as effective if not more so?

regards, tom lane

In response to

Responses

Browse pgsql-patches by date

  From Date Subject
Next Message Tom Lane 2004-03-10 04:37:58 Re: PSQLRC environment variable.
Previous Message Tatsuo Ishii 2004-03-10 01:43:46 Re: [PATCHES] NO WAIT ...