Explore... command in pop-up menu

I have tried the explore command in the control's pop-up menu but only the objects name (e.g. table name) were retrieved. Details of the objects didn't show. What I may miss? I am using Delphi 3. Thanks!
 
Details of objects can be viewed by selecting an object in the tree view. If the object has sub-objects (such as the constraints of a table), they can be viewed by opening the folder of the object.

------------------
Marco Kalter
Allround Automations
 
If a sub-folder is empty, this means that there are no items. If, for example, a table has no triggers or indexes, these folders will be empty if you open them.

------------------
Marco Kalter
Allround Automations
 
Does anybody know if it's possible to call
the explore comand or its equivalent from
inside my programm ?

Best regrads
Dias Costa
 
First of all you need to include the OracleExplorer unit in the uses clause of your unit. To display the explorer, call the ExecuteExplorer function like this:

ExecuteExplorer(MySession, nil);

If the session parameter is nil, the explorer will create a new session.

------------------
Marco Kalter
Allround Automations
 
Back
Top