ZSQLProcessor1.Params Error

Forum related to version 6.5.1 (alpha) and 6.6.x (beta) of ZeosLib's DBOs

Moderators: gto, cipto_kh, EgonHugeist

Post Reply
pe60
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 13.02.2008, 10:37

ZSQLProcessor1.Params Error

Post 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.
User avatar
mdaems
Zeos Project Manager
Zeos Project Manager
Posts: 2766
Joined: 20.09.2005, 15:28
Location: Brussels, Belgium
Contact:

Post 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
Image
pe60
Fresh Boarder
Fresh Boarder
Posts: 2
Joined: 13.02.2008, 10:37

Post 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
Post Reply