Re: Stored Procedures

From: fabrice <regnier(dot)fabrice(at)free(dot)fr>
To: pgsql-odbc(at)postgresql(dot)org
Subject: Re: Stored Procedures
Date: 2003-04-26 12:07:03
Message-ID: 3EAA7667.1050701@free.fr
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-odbc

Hi and thanx :)

Here is what i've done :

Dim dbs As DATABASE, qdf As QueryDef
Set dbs = CurrentDb
dbs.Connect = "odbc;dsn=PostGreSQL;uid=fabrice;pwd=fabrice;database=db1;"
dbs.Execute "select p4();", dbSQLPassThrough

And it worked. p4() is a stored procedure wich returns an integer but,
right now, i don't care about the result.

Next step is to pick up the results from the stored procedure.

f.

Jeff Eckermann a écrit:
> --- fabrice <regnier(dot)fabrice(at)free(dot)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
>
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: Have you checked our extensive FAQ?
>
> http://www.postgresql.org/docs/faqs/FAQ.html
>

In response to

Browse pgsql-odbc by date

  From Date Subject
Next Message Hiroshi Inoue 2003-04-27 08:05:08 Re: ODBC prob
Previous Message Jeff Eckermann 2003-04-25 22:49:58 Re: Stored Procedures