combobox控件的使用??
现在我要在前台写一段代码就是向表user插入一条新记录然后性别我要在combobox中选一要怎么写??
SQL.Add('insert into user (name,id,sex) values (:s1,:s2.:s3)');
Parameters.ParamByName('s1').Value :=edit1.Text;
Parameters.ParamByName('s2').Value :=edit2.Text;
Parameters.ParamByName('s3').Value :=combobox1.value;
这样写的语句一直错不然就是性别会自动为空了??
要怎么改呢??
请教大家了?
谢谢了/