ViewVC Help
View File | Revision Log | Show Annotations | Download File | View Changeset | Root Listing
root/public/ibx/branches/udr/examples/UserManual/udrlibrary/myudrlibrary.dpr
Revision: 381
Committed: Sat Jan 15 00:06:22 2022 UTC (2 years, 2 months ago) by tony
File size: 428 byte(s)
Log Message:
Release Candidate 1

File Contents

# Content
1 library myudrlibrary;
2
3 uses
4 System.SysUtils,
5 System.Classes,
6 FBUDRController,
7 udr_myrowcount in 'udr_myrowcount.pas';
8
9 exports firebird_udr_plugin;
10
11 {$R *.res}
12
13 begin
14 with FBUDRControllerOptions do
15 begin
16 ModuleName := 'myudrlibrary';
17 AllowConfigFileOverrides := true;
18 LogFileNameTemplate := '$LOGDIR$MODULE.log';
19 LogOptions := [loLogFunctions, loLogProcedures, loLogTriggers, loDetails];
20 end;
21 end.

Properties

Name Value
svn:eol-style native