T
TSpring
Unregistered / Unconfirmed
GUEST, unregistred user!
Form1.ADOQuery4.Close;
Form1.AdoQuery4.sql.Clear;
Form1.AdoQuery4.SQL.Add('Insert into 进行中任务 (任务名称,目标ip地址,日期,byte) values aa,:bb,:cc,:dd)');
Form1.adoquery4.Parameters.ParamByName('aa').Value:=edit1.text;
Form1.adoquery4.Parameters.ParamByName('bb').Value:=edit2.text;
Form1.adoquery4.Parameters.ParamByName('cc').Value:=label5.caption;
Form1.adoquery4.Parameters.ParamByName('dd').Value:=strtoint(edit3.text);
Form1.Adoquery4.execSQL;
其中任务名称,目标ip地址是文本类型,日期是日期/时间类型,byte是数值类型,连接的数据库是access。可是我运行这段代码的时候
总是有问题。请各位大哥帮小弟看看啊。
Form1.AdoQuery4.sql.Clear;
Form1.AdoQuery4.SQL.Add('Insert into 进行中任务 (任务名称,目标ip地址,日期,byte) values aa,:bb,:cc,:dd)');
Form1.adoquery4.Parameters.ParamByName('aa').Value:=edit1.text;
Form1.adoquery4.Parameters.ParamByName('bb').Value:=edit2.text;
Form1.adoquery4.Parameters.ParamByName('cc').Value:=label5.caption;
Form1.adoquery4.Parameters.ParamByName('dd').Value:=strtoint(edit3.text);
Form1.Adoquery4.execSQL;
其中任务名称,目标ip地址是文本类型,日期是日期/时间类型,byte是数值类型,连接的数据库是access。可是我运行这段代码的时候
总是有问题。请各位大哥帮小弟看看啊。