高手进:用强类型DataSet增加Oracle数据,非String类型的列,无法设置NullValue值为Null或Empty
高手进:用强类型DataSet增加Oracle数据,非String类型的列,无法设置NullValue值为Null或Empty
如题。
打开Dataset设计视图,选择某个table一个列,在属性编辑窗口中找到NullValue属性,有三个值可选:Empty、Null、Throw new exception。
如果此列是String类型,可以随意选择。
如果此列是 非String类型,只能选择Throw new exception!郁闷坏了!保存数据的时候,如果此列为空,就报错!
高手有解决办法没?
所有的余分都送上! --------------------编程问答-------------------- http://msdn.microsoft.com/zh-cn/library/w2wcdz8t(v=VS.80).aspx --------------------编程问答--------------------
<xs:element name="CustomerID" codegen:typedName="CustomerID" codegen:nullValue="" type="xs:string" minOccurs="0" />--------------------编程问答--------------------
<xs:element name="EmployeeID" codegen:typedName="EmployeeID" codegen:nullValue="0" type="xs:int" minOccurs="0" />
补充:.NET技术 , ASP.NET