-
Notifications
You must be signed in to change notification settings - Fork 0
/
DataModule_Connection.dfm
58 lines (58 loc) · 1.58 KB
/
DataModule_Connection.dfm
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
object DM_Connection: TDM_Connection
OnCreate = DataModuleCreate
Height = 480
Width = 640
object FDPhysMySQLDriverLink1: TFDPhysMySQLDriverLink
Left = 472
Top = 192
end
object FDPhysIBDriverLink1: TFDPhysIBDriverLink
Left = 384
Top = 304
end
object FDMoniFlatFileClientLink1: TFDMoniFlatFileClientLink
FileName = 'trace1.txt'
Left = 336
Top = 120
end
object FDManager1: TFDManager
WaitCursor = gcrHourGlass
FormatOptions.AssignedValues = [fvMapRules, fvDataSnapCompatibility]
FormatOptions.OwnMapRules = True
FormatOptions.MapRules = <>
ResourceOptions.AssignedValues = [rvDirectExecute, rvAutoReconnect]
ResourceOptions.DirectExecute = True
ResourceOptions.AutoReconnect = True
Active = True
Left = 152
Top = 48
end
object FDConn_Sql: TFDConnection
Params.Strings = (
'ConnectionDef=IB_PTest')
FetchOptions.AssignedValues = [evDetailCascade]
FetchOptions.DetailCascade = True
FormatOptions.AssignedValues = [fvMapRules]
FormatOptions.OwnMapRules = True
FormatOptions.MapRules = <
item
SourceDataType = dtDateTime
TargetDataType = dtDateTimeStamp
end
item
SourceDataType = dtWideString
TargetDataType = dtAnsiString
end
item
SourceDataType = dtWideMemo
TargetDataType = dtBlob
end>
ResourceOptions.AssignedValues = [rvAutoReconnect]
ResourceOptions.AutoReconnect = True
TxOptions.Isolation = xiReadCommitted
LoginPrompt = False
OnError = FDConn_SqlError
Left = 104
Top = 160
end
end