Subject Re: [IBO] TIB_Storedproc - ExecSql, Execute & ExecProc methods
Author Paul Vinkenoog
Hi Franky,

> I've made a Stored procedure which returns records when i execute
> it in ibexpert, no problem there.

If it returns records, then it's a so-called selectable stored
procedure. That is, you use SELECT to retrieve those rows of values.

> But from Delphi, using a TIB_Storedproc component i never get any
> records, although i've put the property StoredProcForSelect to True.

Just set up a TIB_Query (or TIB_Cursor if you don't need buffering)
with an SQL like:

select <field list> from MyStoredProc

and use it like any other query. (Well, except that you can't insert
or update.)


Greetings,
Paul Vinkenoog