关于数据库记录空值的问题(30分)

  • 主题发起人 主题发起人 hero_
  • 开始时间 开始时间
H

hero_

Unregistered / Unconfirmed
GUEST, unregistred user!
当数据库记录为空值时,
str:=m_query.Recordset.Fields.Item['TestContent'].Value出错。

应该加上怎样的判断?
 
if m_query.Recordset.Recordcount<>0 then
str:=m_query.Recordset.Fields.Item['TestContent'].Value
 
不要用value
用asstring
 
if not m_query.Recordset.FieldByName('TestContent').IsNull then
........
 
多人接受答案了。
 

Similar threads

回复
0
查看
968
不得闲
S
回复
0
查看
3K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
2K
SUNSTONE的Delphi笔记
S
S
回复
0
查看
724
SUNSTONE的Delphi笔记
S
S
回复
0
查看
718
SUNSTONE的Delphi笔记
S
后退
顶部