Subject | RE: [IBO] Table name from IBOQuery |
---|---|
Author | Jason Wharton |
Post date | 2004-11-04T18:30:26Z |
> I'm using Delphi 5 and IBObjects. Is there a way to get the tableThere is a way to do this but I think you have to hack down into the
> name used in the SQL from TIBOQuery?
InternalDataset.
Something like this:
MyIBOQuery.Prepare;
MyIBOQuery.InternalDataset.Fields.Relations[ n:integer ]
Let me know if that does the trick.
Jason Wharton