I found a bug in Virtualtable
I make 2 Column :
object TSmallintField
FieldName = 'VirtualTable1Field1'
end
object TStringField
FieldName = 'VirtualTable1Field2'
end
When I Run, It show-> Exception class EClassNotFound with message 'Class TSmallintField not found'.
Exception class EClassNotFound with message 'Class TSmallint
-
- Posts: 31
- Joined: Sun 27 Jun 2010 20:50
-
- Posts: 31
- Joined: Sun 27 Jun 2010 20:50
Re: Exception class EClassNotFound with message 'Class TSmallint
I'm using delphi 2007 and UniDAC 3.50.0.12 for Delphi
Hello,
If you added fields in the *.dfm file manually, then it is incorrect syntax.
Please create fields in design time and save this form. You will be able to see correct fields descriptions in the *.dfm file
For example:
object VirtualTable1Field1: TSmallintField
FieldName = 'Field1'
end
object VirtualTable1field2: TStringField
FieldName = 'field2'
end
If you added fields in the *.dfm file manually, then it is incorrect syntax.
Please create fields in design time and save this form. You will be able to see correct fields descriptions in the *.dfm file
For example:
object VirtualTable1Field1: TSmallintField
FieldName = 'Field1'
end
object VirtualTable1field2: TStringField
FieldName = 'field2'
end
-
- Posts: 31
- Joined: Sun 27 Jun 2010 20:50
[quote="AlexP"]Hello,
If you added fields in the *.dfm file manually, then it is incorrect syntax.
Please create fields in design time and save this form. You will be able to see correct fields descriptions in the *.dfm file
For example:
object VirtualTable1Field1: TSmallintField
FieldName = 'Field1'
end
object VirtualTable1field2: TStringField
FieldName = 'field2'
end[/quote]
Thx I have to changed it manually,but It's work
If you added fields in the *.dfm file manually, then it is incorrect syntax.
Please create fields in design time and save this form. You will be able to see correct fields descriptions in the *.dfm file
For example:
object VirtualTable1Field1: TSmallintField
FieldName = 'Field1'
end
object VirtualTable1field2: TStringField
FieldName = 'field2'
end[/quote]
Thx I have to changed it manually,but It's work