Z
zrj
Unregistered / Unconfirmed
GUEST, unregistred user!
1.我想在数据库的一条记录如chapter,type字段设置为'第一章','填空题',
这条记录post后,下一条记录的chapter,type字段自动变为'第一章','填空题';
这个应该如何做???(具体一点代码好吗?)
2:我想用两个combobox框,过滤数据库,如combobox1.text='第一章';combobox2.text='填空';如何来写sql语句,还是用dbgrid的filter.
不过我还是想用sql语句,如果用???
with dm.query1 do
begin
close;
sql.Clear;
sql.Add('select id,type from question where chapter=:chapter and type=:typea);
ParamByname('chapter').asstring=:chapter.text;
Parambyname('typea').asstring=:typea.text;
prepare;
open;
end;
对吗???
3,我做题库的,动态抽题大家有啥好的想法啊???