Session Informations

Discussion of open issues, suggestions and bugs regarding ODAC (Oracle Data Access Components) for Delphi, C++Builder, Lazarus (and FPC)
Post Reply
eric.garcia38
Posts: 5
Joined: Wed 20 Dec 2017 03:05

Session Informations

Post by eric.garcia38 » Sat 30 Dec 2017 00:29

Hello,


is there a way to retrieve the information of the session ? I mean
all or some info from the Select * From V$session....


thx

eric

MaximG
Devart Team
Posts: 1822
Joined: Mon 06 Jul 2015 11:34

Re: Session Informations

Post by MaximG » Thu 04 Jan 2018 08:58

You can get the information you are interested in by executing a query using the OraQuery component :

Code: Select all

 ...
  OraQuery.SQL.Text := 'Select * From v$session';
  OraQuery.Open;
  ...

Post Reply