ASP使用Null执行存储过程

时间:2022-09-20 23:59:45

In asp.net can use dbnull.value to send Null value to db. How to use in ASP?

在asp.net中可以使用dbnull.value将Null值发送到db。如何在ASP中使用?

Thanks a lot!!

非常感谢!!

1 个解决方案

#1


2  

In ASP, you need to use the keyword NULL as the null value for the stored procedure.

在ASP中,您需要使用关键字NULL作为存储过程的空值。

Note: don't use vbNull as this evaluates to 1 rather than null.

注意:不要使用vbNull,因为它的计算结果为1而不是null。

#1


2  

In ASP, you need to use the keyword NULL as the null value for the stored procedure.

在ASP中,您需要使用关键字NULL作为存储过程的空值。

Note: don't use vbNull as this evaluates to 1 rather than null.

注意:不要使用vbNull,因为它的计算结果为1而不是null。