Get the Logon History data

doej033

Member
Hi everybody:
In the OracleLogon component when you set the ldLogonHistory option a handful list (with previously entered logon data) appears. I wonder if it is possible to get this list... When you set either HistoryIniFile or HistoryRegSection the list is saved in encrypted form. I need the users names and the databases of the succesful logons.

Thank you in advance.
 
The OracleLogon unit contains a global LogonHistory variable. The LogonHistory.Count indicates the number of items, and LogonHistory.Item(index) returns the THistoryItem at the given index. It has a Username, Password, Database, and ConnectAs property.
 
Back
Top