Subject | Re: [IBO] TIB_Storedproc - ExecSql, Execute & ExecProc methods |
---|---|
Author | Paul Vinkenoog |
Post date | 2004-06-22T13:12:48Z |
Hi Franky,
procedure. That is, you use SELECT to retrieve those rows of values.
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
> I've made a Stored procedure which returns records when i executeIf it returns records, then it's a so-called selectable stored
> it in ibexpert, no problem there.
procedure. That is, you use SELECT to retrieve those rows of values.
> But from Delphi, using a TIB_Storedproc component i never get anyJust set up a TIB_Query (or TIB_Cursor if you don't need buffering)
> records, although i've put the property StoredProcForSelect to True.
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