| View previous topic :: View next topic |
| Author |
Message |
Alan T Guest
|
Posted: Wed Dec 20, 2006 4:41 am Post subject: How to know is the table field exists |
|
|
Qry1.Close;
Qry.SQL.Text := 'SELECT * FROM EMPLOYEE';
Qry.Open;
How do I know if the field 'Phone' exists ? |
|
| Back to top |
|
 |
Bill Todd Guest
|
Posted: Wed Dec 20, 2006 7:34 am Post subject: Re: How to know is the table field exists |
|
|
Alan T wrote:
| Quote: | Qry1.Close;
Qry.SQL.Text := 'SELECT * FROM EMPLOYEE';
Qry.Open;
How do I know if the field 'Phone' exists ?
|
See the FindField method in the on-line help.
--
Bill Todd (TeamB) |
|
| Back to top |
|
 |
|