Hi
.
i use this code :
ZQuery1.ParamByName('NamePerson').AsString:= EditPerson_Name.Text;
and insert data to DataBank and this code work corectly.
.
how can i insert data to bank without "ParamByName" , like use index number?
.
i use these codes,but don't work

ZQuery1.Params.Items[0].AsString:= EditPerson_Name.Text;
and
ZQuery1.Params[0].AsString:= EditPerson_Name.Text;"ParamByName"
.
i don't want to use "ParamByName",is Replace code ?!?!