Re: postgresql equivalent to ms access parameter query

Поиск
Список
Период
Сортировка
От Jeff Eckermann
Тема Re: postgresql equivalent to ms access parameter query
Дата
Msg-id 20040324150503.1179.qmail@web20802.mail.yahoo.com
обсуждение исходный текст
Ответ на Re: postgresql equivalent to ms access parameter query  ("David P. Lurie" <dbase4@hotmail.com>)
Список pgsql-odbc
--- "David P. Lurie" <dbase4@hotmail.com> wrote:
>

>
> I presume that a connection string would be
> something like:
>
> connection_name.Open "Provider=ODBC; DSN=xxx
> ;DATABASE=yyy;"

At a minimum, you can get away with just "DSN=xxx".
The database name would usually be specified in the
DSN, and ADO assumes ODBC by default.

I personally like the simplicity of working with
DSN's, but that does add a portability issue, being
the need to create a DSN wherever the application is
deployed.  That may or may not be an issue for you,
depending on the environment in which you are working.
 Some people like to do without DSN's by specifying
all necessary parameters in the connection string.  I
haven't messed much with this, but AFAIK the psqlodbc
driver will use default values for all settings not
explicitly specified, so you don't need to provide a
full connection string in any case.

>
> An ADO recordset equivalent for the TABLE=zzz
> parameter could be:
>
> recordset1.Open  ''zzz", connection_name

Yes.

>
>
> David P. Lurie
>
>
>
>
> ---------------------------(end of
> broadcast)---------------------------
> TIP 9: the planner will ignore your desire to choose
> an index scan if your
>       joining column's datatypes do not match


__________________________________
Do you Yahoo!?
Yahoo! Finance Tax Center - File online. File on time.
http://taxes.yahoo.com/filing.html

В списке pgsql-odbc по дате отправления:

Предыдущее
От: "David P. Lurie"
Дата:
Сообщение: Re: postgresql equivalent to ms access parameter query
Следующее
От: "Philippe Lang"
Дата:
Сообщение: Client UI, ODBC, PG & permissions