Subject | Re: [IBO] how to scan a database |
---|---|
Author | lastensegler@yahoo.de |
Post date | 2001-06-27T12:48:28Z |
Thanks, that should do for the moment.
Rainer
--- In IBObjects@y..., Svein Erling Tysvær
<svein.erling.tysvaer@k...> wrote:
Rainer
--- In IBObjects@y..., Svein Erling Tysvær
<svein.erling.tysvaer@k...> wrote:
> You may find all you want by taking a look at the source forIB_WISQL (if
> you've got that available). Here's a simple answer for your twoquestions.
>created
> SELECT rdb$relation_name
> FROM rdb$relations
> WHERE rdb$Relation_name NOT STARTING 'rdb$'
>
> to get all tables that are not system tables (assuming you have not
> any table starting rdb$).TIB_Query)
>
> Getting the field names is even simpler. TIB_Cursor (and I guess
> has a method called GetFieldNamesList which populates a string list.
>
> Set