Y
yzhshi
Unregistered / Unconfirmed
GUEST, unregistred user!
>> if recordcount = 0 then
if not IsEmpty then...
尽量不用RecordCount,在一些数据库一些情况时必须last一下才准,而数据量又不容许你使用last
>>不用 Select * 之类的语句
是直接将使用的字段列出来,这样是一个好习惯,同时能够避免出各种错误,以及减少提取其他废字段所用的时间。
if not IsEmpty then...
尽量不用RecordCount,在一些数据库一些情况时必须last一下才准,而数据量又不容许你使用last
>>不用 Select * 之类的语句
是直接将使用的字段列出来,这样是一个好习惯,同时能够避免出各种错误,以及减少提取其他废字段所用的时间。