请问delphi7中的dbexpress中的SQLQuery怎么样去执行存储过程,同时能得到返回值,谢谢!!
temp1.Close();
temp1.DataSet.CommandText :='declare @ft int '
                           +'exec bujian_ck_c ''d,''d,@ft output '
                           +'select @ft';
temp1.Execute;
showmessage(temp1.fields[0].asstring);