testvar1:=strtoint(edit1.text); testvar2:=edit2.text; testvar3:=strtoint(edit3.text); sql.Text:=format('insert into test(num,nam,onduty) values(%d,%s,%d)',[testvar1,testvar2,testvar3]); 两个问题 第一我需要给testvar2加单引号,怎么在format中加入单引号 第二个问题strtoint把我的Int数字001给变成了1如何解决?
慕尼黑5688855