home *** CD-ROM | disk | FTP | other *** search
/ Chip 2005 May / CMCD0505.ISO / Software / Shareware / Programare / pgedri / Source / Demos / StoredProcs / Main.dfm next >
Encoding:
Text File  |  2005-04-01  |  1.7 KB  |  79 lines

  1. object frmMain: TfrmMain
  2.   Left = 231
  3.   Top = 252
  4.   Width = 573
  5.   Height = 341
  6.   ActiveControl = btnCreateSP
  7.   Caption = 'Stored Procedures (PostgreSQL Functions) demo'
  8.   Color = clBtnFace
  9.   Font.Charset = DEFAULT_CHARSET
  10.   Font.Color = clWindowText
  11.   Font.Height = -11
  12.   Font.Name = 'MS Sans Serif'
  13.   Font.Style = []
  14.   OldCreateOrder = False
  15.   OnCreate = FormCreate
  16.   PixelsPerInch = 96
  17.   TextHeight = 13
  18.   object btnCreateSP: TButton
  19.     Left = 1
  20.     Top = 3
  21.     Width = 161
  22.     Height = 25
  23.     Caption = 'Create Stored Procedure'
  24.     TabOrder = 0
  25.     OnClick = btnCreateSPClick
  26.   end
  27.   object Memo: TMemo
  28.     Left = 0
  29.     Top = 160
  30.     Width = 565
  31.     Height = 154
  32.     Align = alBottom
  33.     TabOrder = 1
  34.   end
  35.   object btnExecSP: TButton
  36.     Left = 1
  37.     Top = 32
  38.     Width = 161
  39.     Height = 25
  40.     Caption = 'Execute Stored Prodecure'
  41.     TabOrder = 2
  42.     OnClick = btnExecSPClick
  43.   end
  44.   object btnDropSP: TButton
  45.     Left = 1
  46.     Top = 61
  47.     Width = 161
  48.     Height = 25
  49.     Caption = 'Drop Stored Prodecure'
  50.     TabOrder = 3
  51.     OnClick = btnDropSPClick
  52.   end
  53.   object sdsDemo: TSQLDataSet
  54.     MaxBlobSize = -1
  55.     Params = <>
  56.     SQLConnection = connDemo
  57.     Left = 252
  58.     Top = 60
  59.   end
  60.   object SQLMonitor: TSQLMonitor
  61.     Active = True
  62.     OnLogTrace = SQLMonitorLogTrace
  63.     SQLConnection = connDemo
  64.     Left = 251
  65.     Top = 104
  66.   end
  67.   object connDemo: TSQLConnection
  68.     ConnectionName = 'PGEConnection'
  69.     DriverName = 'PostgreSQL'
  70.     GetDriverFunc = 'getSQLDriverPOSTGRESQL'
  71.     LibraryName = 'dbexppge.dll'
  72.     LoadParamsOnConnect = True
  73.     LoginPrompt = False
  74.     VendorLib = 'libpq.dll'
  75.     Left = 252
  76.     Top = 12
  77.   end
  78. end
  79.