Hi,
i'm using Zeos DBO 6.6.0, MySQL 5.0.41 and I need to retrieve result set from stored procedure. I've used TZStoredProc with params like this:
StoredProc1:=TZStoredProc.Create(nil);
StoredProc1.Connection:=Connection1;
StoredProc1.Params.CreateParam(ftInteger, 'param1', ftInput);
... other params added
StoredProc1.Open; // exception here
But exception of "Unsupported operation" occurs when calling Open (same error when calling Exec). I use only IN params in this procedure.
Is there anything wrong in my code?
thanks
Jiri Matejka
Mysql stored procedure using TZStoredProc
Moderators: gto, cipto_kh, EgonHugeist