| Subject | Re: [IBO] Re: Extracting Table names from a SQL select statement |
|---|---|
| Author | Lucas Franzen |
| Post date | 2009-03-08T13:08:39Z |
If you want to know if a table exists in your database you can use the
IB_Connection.SchemaCache.TableNames property which is a TIB_StringList.
TableExists := IB_Connection.SchemaCache.TableNames.IndexOf (
YourTableName ) >= 0;
IB_Connection.SchemaCache.TableNames property which is a TIB_StringList.
TableExists := IB_Connection.SchemaCache.TableNames.IndexOf (
YourTableName ) >= 0;