1 |
tony |
402 |
(* |
2 |
|
|
* Firebird UDR Support (fbudrtested). The fbudr components provide a set of |
3 |
|
|
* Pascal language bindings for the Firebird API in support of server |
4 |
|
|
* side User Defined Routines (UDRs). The fbudr package is an extension |
5 |
|
|
* to the Firebird Pascal API. |
6 |
|
|
* |
7 |
|
|
* The contents of this file are subject to the Initial Developer's |
8 |
|
|
* Public License Version 1.0 (the "License"); you may not use this |
9 |
|
|
* file except in compliance with the License. You may obtain a copy |
10 |
|
|
* of the License here: |
11 |
|
|
* |
12 |
|
|
* http://www.firebirdsql.org/index.php?op=doc&id=idpl |
13 |
|
|
* |
14 |
|
|
* Software distributed under the License is distributed on an "AS |
15 |
|
|
* IS" basis, WITHOUT WARRANTY OF ANY KIND, either express or |
16 |
|
|
* implied. See the License for the specific language governing rights |
17 |
|
|
* and limitations under the License. |
18 |
|
|
* |
19 |
|
|
* The Initial Developer of the Original Code is Tony Whyman. |
20 |
|
|
* |
21 |
|
|
* The Original Code is (C) 2021 Tony Whyman, MWA Software |
22 |
|
|
* (http://www.mwasoftware.co.uk). |
23 |
|
|
* |
24 |
|
|
* All Rights Reserved. |
25 |
|
|
* |
26 |
|
|
* Contributor(s): ______________________________________. |
27 |
|
|
* |
28 |
|
|
*) |
29 |
|
|
library fbudrtests; |
30 |
|
|
|
31 |
|
|
{$IFDEF MSWINDOWS} |
32 |
|
|
{$DEFINE WINDOWS} |
33 |
|
|
{$ENDIF} |
34 |
|
|
|
35 |
|
|
{$IFDEF FPC} |
36 |
|
|
{$mode delphi} |
37 |
|
|
{$codepage UTF8} |
38 |
|
|
{$interfaces COM} |
39 |
|
|
{$ENDIF} |
40 |
|
|
|
41 |
|
|
uses |
42 |
|
|
Classes, sysutils, fbudr, FBUDRController, udr_test01, udr_test02, udr_test03, |
43 |
|
|
udr_test04, udr_test05; |
44 |
|
|
|
45 |
|
|
exports firebird_udr_plugin; |
46 |
|
|
|
47 |
|
|
begin |
48 |
|
|
with FBUDRControllerOptions do |
49 |
|
|
begin |
50 |
|
|
ModuleName := 'fbudrtests'; |
51 |
|
|
AllowConfigFileOverrides := true; |
52 |
|
|
LogFileNameTemplate := '$LOGDIR$MODULE.log'; |
53 |
|
|
LogOptions := [loLogFunctions, loLogProcedures, loLogTriggers, loDetails,loModifyQueries]; |
54 |
|
|
end; |
55 |
|
|
end. |
56 |
|
|
|