C
cnbobo
Unregistered / Unconfirmed
GUEST, unregistred user!
为什么我在查询后inttostr(adoquery1.RecordCount)的值会是-1
用inttostr(adoquery1.RecNo)得到的是0,
有没有记录都一样;
数据库sqlserver2000.
我的源程序
ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Append('select count(*) from picture where 名称 like '+''''+'%'+edit2.Text+'%'+'''');
ADOQuery1.Open;
label4.Caption:=inttostr(adoquery1.RecordCount);
其时我要得到的是有没有记录。用来做判断的条件
用inttostr(adoquery1.RecNo)得到的是0,
有没有记录都一样;
数据库sqlserver2000.
我的源程序
ADOQuery1.Close;
ADOQuery1.SQL.Clear;
ADOQuery1.SQL.Append('select count(*) from picture where 名称 like '+''''+'%'+edit2.Text+'%'+'''');
ADOQuery1.Open;
label4.Caption:=inttostr(adoquery1.RecordCount);
其时我要得到的是有没有记录。用来做判断的条件