Page 1 of 1
ZSQLProcessor1.Params Error
Posted: 13.02.2008, 12:18
by pe60
Hi everybody!
I have a problem with Delphi 7 and ZEOSDBO-6.6.2-rc.
After put ZSQLProcessor in Form and compile, Delphi return Error:
"Exception EReadError in module Project1.exe at 00020F3F.
Error reading ZSQLProcessor1.Params:Property Params does not exist."
I trying to reinstall ZEOS, but Error always showing.
Posted: 13.02.2008, 14:01
by mdaems
Can you send the sample project and eventually instructions about how to reproduce the error? Also add table creation script if that's necessary. You can post here, using pm or using the bug tracker.
Mark
Posted: 13.02.2008, 14:11
by pe60
object Form1: TForm1
Left = 188
Top = 151
Width = 870
Height = 640
Caption = 'Form1'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
Font.Style = []
OldCreateOrder = False
PixelsPerInch = 96
TextHeight = 13
object ZConnection1: TZConnection
Protocol = 'mysql-5'
HostName = '192.168.56.200'
User = 'root'
Password = '1'
Left = 112
Top = 32
end
object DataSource1: TDataSource
DataSet = ZQuery1
Left = 112
Top = 64
end
object ZQuery1: TZQuery
Connection = ZConnection1
SQL.Strings = (
'select * from table')
Params = <>
Left = 112
Top = 96
end
object ZSQLProcessor1: TZSQLProcessor
Params = <>
Connection = ZConnection1
Delimiter = ';'
Left = 112
Top = 128
end
end