Subject Re: [IBO] How to retrieve the table list and stored procedure list of a database.
Author Lucas Franzen
Mirko's schrieb:
>
> Hi,
> With BDE I was able to retrieve the list of table and stored procedure
> using "Session.GetTableNames" and "Session.GetStoredProcNames".
> I look for the correspondent function in IBO but I don't find it,
> can somebody help me?
> Thank you
> Mirko Guidolin


use the TIB_Connection.SchemaCache.

It has the properties you need:

property TableNames : TIB_StringList
property ViewNames : TIB_StringList
property ProcedureNames: TIB_StringList

Luc.