delphimvcframework/samples/renders/WebModuleU.dfm

33 lines
729 B
Plaintext
Raw Normal View History

2013-11-10 01:03:53 +01:00
object WebModule1: TWebModule1
OldCreateOrder = False
OnCreate = WebModuleCreate
Actions = <>
Height = 344
Width = 435
object FDConnection1: TFDConnection
Params.Strings = (
2014-03-06 14:20:57 +01:00
'Database=employee'
2013-11-10 01:03:53 +01:00
'User_Name=sysdba'
'Password=masterkey'
2014-03-06 14:20:57 +01:00
'Protocol=TCPIP'
'Server=localhost'
'DriverID=FB')
2013-11-10 01:03:53 +01:00
ConnectedStoredUsage = [auDesignTime]
2014-03-06 14:20:57 +01:00
Connected = True
2013-11-10 01:03:53 +01:00
LoginPrompt = False
Left = 160
Top = 40
end
object qryCustomers: TFDQuery
Connection = FDConnection1
SQL.Strings = (
'select * from customer')
Left = 160
Top = 112
end
2014-03-06 14:20:57 +01:00
object FDPhysFBDriverLink1: TFDPhysFBDriverLink
2013-11-10 01:03:53 +01:00
Left = 160
2014-03-06 14:20:57 +01:00
Top = 200
2013-11-10 01:03:53 +01:00
end
end