Subject | Re: [IBO] TIBOQuery and selectable SP |
---|---|
Author | Daniel Rail |
Post date | 2004-01-14T22:06:57Z |
Hi,
At January 14, 2004, 17:55, Ronan van Riet wrote:
updatable. Set RequestLive to False and then it should work.
If you want to update the data returned by the SP, then enter the
appropriate DML statements in the InsertSQL, EditSQL and DeleteSQL
properties of TIB_Query.
--
Best regards,
Daniel Rail
Senior System Engineer
ACCRA Group Inc. (www.accra.ca)
ACCRA Med Software Inc. (www.filopto.com)
At January 14, 2004, 17:55, Ronan van Riet wrote:
> Here is how I open the queryYou can't have RequestLive:=True with a selectable SP, it's not
> procedure TDataModule2.waGET_MY_PROJECTSExecute(Sender: TObject);
> begin
> with IBO_QRY_MY_PROJECT do begin
> if not prepared then prepare;
> IBO_QRY_MY_PROJECT.RequestLive := true;
> IBO_QRY_MY_PROJECT.Open;
> end;
> end;
updatable. Set RequestLive to False and then it should work.
If you want to update the data returned by the SP, then enter the
appropriate DML statements in the InsertSQL, EditSQL and DeleteSQL
properties of TIB_Query.
--
Best regards,
Daniel Rail
Senior System Engineer
ACCRA Group Inc. (www.accra.ca)
ACCRA Med Software Inc. (www.filopto.com)