File: dbform.lfm

package info (click to toggle)
lazarus 2.2.6%2Bdfsg2-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 219,980 kB
  • sloc: pascal: 1,944,919; xml: 357,634; makefile: 270,608; cpp: 57,115; sh: 3,249; java: 609; perl: 297; sql: 222; ansic: 137
file content (111 lines) | stat: -rw-r--r-- 2,244 bytes parent folder | download | duplicates (4)
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
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
object Form1: TForm1
  Left = 238
  Height = 314
  Top = 145
  Width = 456
  Caption = 'Form1'
  ClientHeight = 314
  ClientWidth = 456
  OnCreate = FormCreate
  LCLVersion = '2.3.0.0'
  object DBGrid1: TDBGrid
    Left = 43
    Height = 195
    Top = 97
    Width = 365
    Color = clWindow
    Columns = <>
    DataSource = DataSource1
    TabOrder = 0
  end
  object SQLTransaction1: TSQLTransaction
    Active = False
    Action = caNone
    Database = SybaseConnection1
    Left = 208
    Top = 32
  end
  object SQLQuery1: TSQLQuery
    FieldDefs = <    
      item
        Name = 'srvid'
        DataType = ftSmallint
        Precision = -1
      end    
      item
        Name = 'srvstatus'
        DataType = ftSmallint
        Precision = -1
      end    
      item
        Name = 'srvname'
        DataType = ftFixedChar
        Precision = -1
        Size = 60
      end    
      item
        Name = 'srvnetname'
        DataType = ftFixedChar
        Precision = -1
        Size = 510
      end    
      item
        Name = 'srvclass'
        DataType = ftSmallint
        Precision = -1
      end    
      item
        Name = 'srvsecmech'
        DataType = ftFixedChar
        Precision = -1
        Size = 60
      end    
      item
        Name = 'srvcost'
        DataType = ftSmallint
        Precision = -1
      end    
      item
        Name = 'srvstatus2'
        DataType = ftBCD
        Precision = 10
      end    
      item
        Name = 'srvprincipal'
        DataType = ftFixedChar
        Precision = -1
        Size = 510
      end>
    Database = SybaseConnection1
    Transaction = SQLTransaction1
    SQL.Strings = (
      'select * from sysservers'
    )
    Params = <>
    Macros = <>
    Left = 280
    Top = 32
  end
  object SybaseConnection1: TSybaseConnection
    Connected = False
    LoginPrompt = False
    KeepConnection = False
    Transaction = SQLTransaction1
    UserName = 'sa'
    LogEvents = []
    Left = 128
  end
  object MSSQLConnection1: TMSSQLConnection
    Connected = False
    LoginPrompt = False
    KeepConnection = False
    LogEvents = []
    Left = 128
    Top = 48
  end
  object DataSource1: TDataSource
    DataSet = SQLQuery1
    Left = 372
    Top = 32
  end
end