Re: Switching Between Databases

From: "Jan Muszynski" <postgres(at)jancm(dot)org>
To: "Michael Peters" <mike101a(at)hotmail(dot)com>, pgsql-odbc(at)postgresql(dot)org
Subject: Re: Switching Between Databases
Date: 2007-07-21 20:55:06
Message-ID: 46A23A6A.23441.1C9A9DD@postgres.jancm.org
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

On 21 Jul 2007 at 16:25, Michael Peters wrote:

> I was not entirely sure how to frame my search of ODBC mailing database on
> this topic so my apologies if it has been previously discussed at length.
>
> When using the MySQL ODBC driver it is possible to frame an SQL query to
> select a chosen database on the fly.within a single DSN Connection Instance
>
> For example
>
> Select * from weather.cities
>
> Would select everything from the Cities Table within the Weather DB.
>
> Alternatively
>
> Use Weather
> Select * from cities
>
> Would do the same thing but require two SQL statements similar to psql which
> would be
>
> \c weather
> Select * from cities
>
> Question
>
> Is it possible when using the PostgreSQL ODBC driver to switch back and
> forth between different Databases within a single connection instance?
>
> Mike

You can switch between schemas, but not between DB's. Which means that you
can accomplish the same thing, just approaching it differently.

Instead of multiple DB's just set up multiple schema's. Then the way to
chenage becomes:
Select item from schema1.table;
or
SET search_path TO schema1;
Select item from table;

That will select from schema1.table

You can also say something like:
SET search_path TO schema1,schema2,public;

and in that case any object will be chosen from the first schema (in the
defined sequence) in which it's found (with public being the default
schema).

Read up on schemas in the documentation for more info. But, at least at
the current time, a construct like dbname.schema.table isn't supported
(which is what would be needed for multiple DB support).

HTH

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Zubkovsky, Sergey 2007-07-23 13:43:25 Varchar parameter conversion
Previous Message Tom Lane 2007-07-21 16:15:21 Re: Switching Between Databases