Subject | TIBOTable - Removing fields in code? |
---|---|
Author | Joe Martinez |
Post date | 2004-12-15T18:13:36Z |
If I drop a TIBOTable on my form, I can use the Fields Editor to remove
fields that I don't want to be queried from the server. However, if I
create the TIBOTable in code, like:
TIBOTable* ProductTable = new TIBOTable(this);
ProductTable->DatabaseName = "SMRDBS_MAN";
ProductTable->TableName = "PRODUCTS";
How can I emulate in code what the Fields Editor does? I just want to
remove a couple of fields from it.
Thanks,
Joe
fields that I don't want to be queried from the server. However, if I
create the TIBOTable in code, like:
TIBOTable* ProductTable = new TIBOTable(this);
ProductTable->DatabaseName = "SMRDBS_MAN";
ProductTable->TableName = "PRODUCTS";
How can I emulate in code what the Fields Editor does? I just want to
remove a couple of fields from it.
Thanks,
Joe