DB数据类型为整数时如何在插入时设置NULL值

DB数据类型为整数时如何在插入时设置NULL值

本文介绍了DB数据类型为整数时如何在插入时设置NULL值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

 cmd =  new  SqlCommand( 从ProductDetails中选择productid,其中productname =' + ddlproductid.SelectedItem.ToString()+  ',con); 
dr = cmd.ExecuteReader();

if (dr.Read())
{
proid = dr [ 0 ]的ToString();
}

dr.Close();
cmd.Dispose();

我有一个coloumn来插入
SqlParameter ProductID = new SqlParameter( ProductID int .Parse(proid.ToString()));



问题是:
如何将int.Parse(proid.ToString())值设置为NULL插入。 db数据类型是整数
如果我将值传递给这个参数proid.ToString()它的工作
在某些情况下我没有传递任何值它会抛出转换错误而不是必须设置为DB中的NULL
解决方案



  cmd = new SqlCommand("select productid from ProductDetails where productname='" + ddlproductid.SelectedItem.ToString() + "'", con);
                dr = cmd.ExecuteReader();

                if (dr.Read())
                {
                    proid = dr[0].ToString();
                }
               
                dr.Close();
                cmd.Dispose();

I had a coloumn to insert
 SqlParameter ProductID = new SqlParameter("ProductID", int.Parse(proid.ToString())); 


The Question is:
how to set the int.Parse(proid.ToString()) value as a NULL while insertion. the db datatype is integer
if i pass the value to this parameter proid.ToString() its working 
in some cases i dosen't pass any values it throws me the conversionerror instead of that must be set as a NULL in DB
解决方案



这篇关于DB数据类型为整数时如何在插入时设置NULL值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 12:54