nullable sqlparameter

B

buran

Dear ASP.NET Programmers,

How can I make an sqlparamater accept NULL value programmatically? I use the
following the code, but it does not work:

Dim admDate As SqlParameter
admDate = New SqlParameter("@admissionDate", SqlDbType.SmallDateTime)
admDate.isNullable = True
admDate.Value = CType(admissionDate, Date).Date.ToString("dd.MM.yyyy")

The compliler throws an exception when passing System.DBNull value to the
sqlparamater admDate.
Thanks in advance,

Buran
 
F

Frans Bouma

Dear ASP.NET Programmers,

How can I make an sqlparamater accept NULL value programmatically? I use
the following the code, but it does not work:

Dim admDate As SqlParameter
admDate = New SqlParameter("@admissionDate", SqlDbType.SmallDateTime)
admDate.isNullable = True
admDate.Value = CType(admissionDate, Date).Date.ToString("dd.MM.yyyy")

The compliler throws an exception when passing System.DBNull value to
the sqlparamater admDate.

if you do:
amdDate.Value = System.DBNull.Value

this throws an exception? Which one?

You can also pass: nothing, or simply do not pass a value, it will be NULL
automatically. (if my memory doesn't fool me :))

FB
 
B

buran

Thanks, that worked :)

Frans Bouma said:
if you do:
amdDate.Value = System.DBNull.Value

this throws an exception? Which one?

You can also pass: nothing, or simply do not pass a value, it will be NULL
automatically. (if my memory doesn't fool me :))

FB

--
Solutions Design : http://www.sd.nl
My open source .NET Software : http://www.sd.nl/software
My .NET Blog : http://weblogs.asp.net/FBouma
-------------------------------------------------------------------------
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Top