Re: Stored Procedures

Поиск
Список
Период
Сортировка
От Jeff Eckermann
Тема Re: Stored Procedures
Дата
Msg-id 20030425224958.58564.qmail@web20808.mail.yahoo.com
обсуждение исходный текст
Ответ на Stored Procedures  (fabrice <regnier.fabrice@free.fr>)
Список pgsql-odbc
--- fabrice <regnier.fabrice@free.fr> wrote:
> Hi:)
>
> I'm looking for a piece of code that could show me
> how to call a stored
> procedure with parameters from Access95 (VB).
>
> It seems nothing exists in the deep www :(
>

I assume you mean, with parameters known only at
runtime...

You will need to do a passthrough query, and construct
the query on the fly.  (searches through vague
memories ...) Using DAO: create a querydef, set the
"connect" property (look in the help file to get the
construction), set the "sql" property to be your
dynamically constructed query string.  If you are not
returning any records (i.e. doing inserts, updates or
whatever), then set the "returnsrecords" property to
false.

I haven't done this for a while, so my memory is a
little vague, but that should give you an idea.

__________________________________________________
Do you Yahoo!?
The New Yahoo! Search - Faster. Easier. Bingo
http://search.yahoo.com


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

Предыдущее
От: pedwards@anedsociety.org
Дата:
Сообщение: Contact us!
Следующее
От: fabrice
Дата:
Сообщение: Re: Stored Procedures