MySQL Forums
Forum List  »  Delphi

Re: How to do this
Posted by: Daniel Kram
Date: August 11, 2009 11:26AM

In Delphi:
qryWork.SQL.Clear;

qryWork.SQL.Add('SELECT yourstoredprocedurename (your, parameters, here) as Anything');
qryWork.Open;

if (not qryWork.EOF) then
begin
showmessage(qryWork.FieldByName('FieldReturnedFromStoredProcedure').AsString);
end;
qryWork.Close;

Hope this helps.

Options: ReplyQuote


Subject
Written By
Posted
July 14, 2009 02:28AM
Re: How to do this
August 11, 2009 11:26AM


Sorry, you can't reply to this topic. It has been closed.

Content reproduced on this site is the property of the respective copyright holders. It is not reviewed in advance by Oracle and does not necessarily represent the opinion of Oracle or any other party.