求sql语句 急(50分)

  • 主题发起人 主题发起人 makewater
  • 开始时间 开始时间
M

makewater

Unregistered / Unconfirmed
GUEST, unregistred user!
adoquery1.sql.text:='update table1 set trans_time=(), trans_date=() where id=j';
j是程序中的变量 int类型 trans_time trans_date为字符类型 都是现在的时间和日期
格式为 xx:xx:xx xxxx-xx-xx 另外id也是整形的
 
adoquery1.sql.text:=
'update table1 set trans_time=:S0, trans_date=:S1 where id=:S2'
adoquery1.Parameters.ParamByName('S0').Value := atime;
adoquery1.Parameters.ParamByName('S1').Value := adate;
adoquery1.Parameters.ParamByName('S2').Value := aint;
adoquery1.ExecSQL;
 
adoquery1.sql.text:= 'update table1 set trans_time=:S0, trans_date=:S1 where id=:S2';
adoquery1.Parameters.ParamByName('S0').Value := FormatDateTime('hh:mm:ss', Now);
adoquery1.Parameters.ParamByName('S1').Value := FormatDateTime('yyyy-mm-dd', Now);
adoquery1.Parameters.ParamByName('S2').Value := j;
adoquery1.ExecSQL;
 

Similar threads

S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
I
回复
0
查看
612
import
I
后退
顶部