S
syw
Unregistered / Unconfirmed
GUEST, unregistred user!
tjquery.Insert;
tjquery.RequestLive:=true;
tjquery.SQL.Clear;
tjquery.SQL.Add('insert into workers'+'(编号,姓名,性别,职位,工资,出生年月,电话,住址)'
+'value'+'bid,:name,:sex,:job,:salary,:birth,hone,:address)');
tjquery.ParamByName('bid').AsString:=tjedit1.Text;
tjquery.ParamByName('name').AsString:=tjedit2.Text;
tjquery.ParamByName('sex').AsString:=tjcombobox.Text;
tjquery.ParamByName('job').AsString:=tjedit4.Text;
tjquery.ParamByName('salary').AsInteger:=strtoint(tjedit5.Text);
tjquery.ParamByName('birth').AsDate:=strtodate(tjmaskedit.Text);
tjquery.ParamByName('phone').AsString:=tjedit7.Text;
tjquery.ParamByName('address').AsString:=tjedit8.Text;
tjquery.Post;
错误类型:cannot modify a read-only dataset
tjquery.RequestLive:=true;
tjquery.SQL.Clear;
tjquery.SQL.Add('insert into workers'+'(编号,姓名,性别,职位,工资,出生年月,电话,住址)'
+'value'+'bid,:name,:sex,:job,:salary,:birth,hone,:address)');
tjquery.ParamByName('bid').AsString:=tjedit1.Text;
tjquery.ParamByName('name').AsString:=tjedit2.Text;
tjquery.ParamByName('sex').AsString:=tjcombobox.Text;
tjquery.ParamByName('job').AsString:=tjedit4.Text;
tjquery.ParamByName('salary').AsInteger:=strtoint(tjedit5.Text);
tjquery.ParamByName('birth').AsDate:=strtodate(tjmaskedit.Text);
tjquery.ParamByName('phone').AsString:=tjedit7.Text;
tjquery.ParamByName('address').AsString:=tjedit8.Text;
tjquery.Post;
错误类型:cannot modify a read-only dataset