Re: Run Stored procedure - function from VBA

From: Rob Sargent <robjsargent(at)gmail(dot)com>
To: Łukasz Jarych <jaryszek(at)gmail(dot)com>
Cc: "pgsql-general(at)postgresql(dot)org" <pgsql-general(at)postgresql(dot)org>
Subject: Re: Run Stored procedure - function from VBA
Date: 2018-06-19 19:54:15
Message-ID: 40a7adef-672b-a311-1f36-e7b3dc6ab063@gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 06/18/2018 09:51 PM, Łukasz Jarych wrote:
> Thank you Rob,
>
> question is it is the optimal way to run SP from VBA?
> Or not?
>
> Best,
> Jacek
>
> 2018-06-19 1:34 GMT+02:00 Rob Sargent <robjsargent(at)gmail(dot)com
> <mailto:robjsargent(at)gmail(dot)com>>:
>
>
>
>> On Jun 18, 2018, at 9:47 AM, Łukasz Jarych <jaryszek(at)gmail(dot)com
>> <mailto:jaryszek(at)gmail(dot)com>> wrote:
>>
>> Hi Guys,
>>
>> i have example function :
>>
>> CREATE OR REPLACE FUNCTION totalRecords ()
>> RETURNS integer AS $total$
>> declare
>> total integer;
>> BEGIN
>>    SELECT count(*) into total FROM COMPANY;
>>    RETURN total;
>> END;
>> $total$ LANGUAGE plpgsql;
>>
>> and i want to run it from VBA using odbc connection.
>>
>> What is the best way to use it ?
>>
>> something like this:
>>
>> |Dim dbCon asnew ADODB.Connection Dim rst asnew ADODB.Recordset
>> Dbcon.connectionstring=”Your connection string goes
>> here!”Dbcon.openRst.openstrsql|
>> where strsql is "Select * from totalRecords" or this is not a
>> good solution?
>>
>> Best,
>> Jacek
>
> You need the parentheses after the function name: “select * from
> totalrecords();"
>
>

Depends on the usage pattern.  I'm sure there is an ODBC construct for
stored procedures/function, which you could build once and re-use with
new parameter values if you're going to call this repeatedly.

In response to

Responses

Browse pgsql-general by date

  From Date Subject
Next Message Matheus de Oliveira 2018-06-19 20:05:48 Re: found xmin from before relfrozenxid on pg_catalog.pg_authid
Previous Message Hellmuth Vargas 2018-06-19 19:51:58 Re: Is postorder tree traversal possible with recursive CTE's?