Hey all,
Im using MYDAC (MySQL) and I am wondering how I can open a TMyStoredProc, take the result records and store them somewhere else, close the proc and still use the records that I stored?
Cheers
Illsley
Clone records from a TMyStoredProc?
Try to move records from MyStoredProc into VirtualTable. This looks like following:
TVirtualTable component is included into MyDAC installation package. You can find this component on DataAccess tab of Component Palette.
Code: Select all
MyStoredProc.Execute;
VirtualTable.Assign(MyStoredProc);
VirtualTable.Open;