How to en/disable OracleMonitor at runtime

Arie Mars

Member
Is there a way to enable/disable Oracle Monitor at runtime?
The docs say to put OracleMonitor in the uses-list and call EnableMonitor/DisableMonitor in your code. But it seems this call is not available. Do I need the pro-version?

Arie
 
Originally posted by Arie Mars:
Is there a way to enable/disable Oracle Monitor at runtime?
The docs say to put OracleMonitor in the uses-list and call EnableMonitor/DisableMonitor in your code. But it seems this call is not available. Do I need the pro-version?

Arie
These functions are located in Oracle unit (not in OracleMonitor unit). Who knows why? :confused:
 
Mmmh, are you sure? It's already mentioned in my uses-list. I'm using version 3.4.6.1. and:

procedure TFORMMain.InitUser;
begin
EnableMonitor;
end; { InitUser }

still gives me:
undeclared identifier EnableMonitor
 
Originally posted by Arie Mars:
Mmmh, are you sure? It's already mentioned in my uses-list. I'm using version 3.4.6.1. and:

procedure TFORMMain.InitUser;
begin
EnableMonitor;
end; { InitUser }

still gives me:
undeclared identifier EnableMonitor
Yes, I'm sure. But in 3.4.6.1 this capability is absent totally. It appears in 4.0.
 
Back
Top