c#.net 数据库取值结果

[复制链接]
查看11 | 回复1 | 2011-5-23 15:36:54 | 显示全部楼层 |阅读模式
A (id,a)
id a
1 NULL
string sql="select len(a) from A where id=‘“+id+”’“;
SqlCommand cmd = new SqlCommand(sql,conn);
conn.Open();
int count = cmd.ExecuteScalar();
conn.close();
count得到的是啥?
或者说 如何判断数据库中的某个值是不是NULL

回复

使用道具 举报

千问 | 2011-5-23 15:36:54 | 显示全部楼层
count 是指从数据库取到数据的第一行第一列int count = cmd.ExecuteScalar()这样写是把第一行第一列隐式转换成int类型判断某个值是不是null:string sql="select len(a) from A where id=‘“+id+”’“;Sqladapter sda=new Sqladapter (sql,conn);dataset ds=new dataset;sda.fill(ds);if(ds.tables.count == 0){
//是null}else{
if(ds.tables[0]["a"] == null)
{
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 立即注册

本版积分规则

主题

0

回帖

4882万

积分

论坛元老

Rank: 8Rank: 8

积分
48824836
热门排行