Recall buffer

I would like to know where the sql statements recallable via Ctrl-E are stored so I can develop a plugin to present them in a different format. Thanks...
 
I discovered the location of the PLSRecall.dat file but it is a binary file. I did not find the format of the file documented anywhere. Is it possible to get the format of this file? Thanks...
 
Can you let me know what programming language you will be using for your Plug-In? That way I can try to send you an appropriate definition.
 
This is the Delphi definition of the data type:
Code:
TRecallRecord = packed record
  Sequence: Integer;
  TimeStamp: TDateTime;
  Username: array[0..30] of Char;
  Database: array[0..80] of Char;
  Text: array[0..4000] of Char;
end;
You can open and read the file as a "File of TRecallRecord". The Text field is zero-terminated. The sequence indicates the order of execution.
 
Back
Top