Subject Re: [IBO] Re: Extracting Table names from a SQL select statement
Author Lucas Franzen
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;