I am trying to pass a null value into a stored procedure
so that it can save the data. I am using Microsoft's
SQLHelper dll to do this. My example code is below. How
do I pass in a null value as a parameter? For example, in
the code below, miVendorID is declared as an Object. The
save attempt fails if the object has not been populated
(for example, the person choose not to select a vendor
from the dropdown list) I have the same problem for both
numeric and string fields.
Public Function Save() As String
Dim pParms(9) As SqlClient.SqlParameter
pParms(0) = New SqlClient.SqlParameter("@ID", miID)
pParms(1) = New SqlClient.SqlParameter("@VendorID",
miVendorID)
pParms(2) = New SqlClient.SqlParameter("@StatusID",
miStatusID)
pParms(3) = New SqlClient.SqlParameter("@PONumber",
msPONumber)
pParms(4) = New SqlClient.SqlParameter("@Date",
mdPODate)
pParms(5) = New SqlClient.SqlParameter("@ContactName",
msContactName)
pParms(6) = New SqlClient.SqlParameter
("@ContactPhone", msContactPhone)
pParms(7) = New SqlClient.SqlParameter("@Comment",
msComment)
pParms(8) = New SqlClient.SqlParameter("@CreatedByID",
miCreatedByID)
pParms(9) = New SqlClient.SqlParameter
("@ModifiedByID", miModifiedByID)
Try
'perform insert
If miID = 0 Then
miID = SqlHelper.ExecuteScalar(msConnectionString,
CommandType.StoredProcedure, "p_PurchaseOrder_Insert",
pParms)
Else
'perform update
SqlHelper.ExecuteNonQuery(msConnectionString,
CommandType.StoredProcedure, "p_PurchaseOrder_Update",
pParms)
End If
Catch ex As Exception
Save = "Duplicate"
End Try
End Function 3 8311
You need to use "nothing" insted of "null" in .net
"Brian" <bs********@pdspc.com> wrote in message
news:0b****************************@phx.gbl... I am trying to pass a null value into a stored procedure so that it can save the data. I am using Microsoft's SQLHelper dll to do this. My example code is below. How do I pass in a null value as a parameter? For example, in the code below, miVendorID is declared as an Object. The save attempt fails if the object has not been populated (for example, the person choose not to select a vendor from the dropdown list) I have the same problem for both numeric and string fields.
Public Function Save() As String
Dim pParms(9) As SqlClient.SqlParameter
pParms(0) = New SqlClient.SqlParameter("@ID", miID) pParms(1) = New SqlClient.SqlParameter("@VendorID", miVendorID) pParms(2) = New SqlClient.SqlParameter("@StatusID", miStatusID) pParms(3) = New SqlClient.SqlParameter("@PONumber", msPONumber) pParms(4) = New SqlClient.SqlParameter("@Date", mdPODate) pParms(5) = New SqlClient.SqlParameter("@ContactName", msContactName) pParms(6) = New SqlClient.SqlParameter ("@ContactPhone", msContactPhone) pParms(7) = New SqlClient.SqlParameter("@Comment", msComment) pParms(8) = New SqlClient.SqlParameter("@CreatedByID", miCreatedByID) pParms(9) = New SqlClient.SqlParameter ("@ModifiedByID", miModifiedByID)
Try 'perform insert If miID = 0 Then miID = SqlHelper.ExecuteScalar(msConnectionString, CommandType.StoredProcedure, "p_PurchaseOrder_Insert", pParms) Else 'perform update SqlHelper.ExecuteNonQuery(msConnectionString, CommandType.StoredProcedure, "p_PurchaseOrder_Update", pParms) End If Catch ex As Exception Save = "Duplicate" End Try
End Function
Brian,
Have you tried setting the appropriate parameter to DBNull.Value vs.
null? This is what is passed back from a database for a null value. Also,
are you sure that your stored procedure will accept a null parameter? Try
testing it in QueryAnalyzer to see.
Ron Allen
"Brian" <bs********@pdspc.com> wrote in message
news:0b****************************@phx.gbl... I am trying to pass a null value into a stored procedure so that it can save the data. I am using Microsoft's SQLHelper dll to do this. My example code is below. How do I pass in a null value as a parameter? For example, in the code below, miVendorID is declared as an Object. The save attempt fails if the object has not been populated (for example, the person choose not to select a vendor from the dropdown list) I have the same problem for both numeric and string fields.
Public Function Save() As String
Dim pParms(9) As SqlClient.SqlParameter
pParms(0) = New SqlClient.SqlParameter("@ID", miID) pParms(1) = New SqlClient.SqlParameter("@VendorID", miVendorID) pParms(2) = New SqlClient.SqlParameter("@StatusID", miStatusID) pParms(3) = New SqlClient.SqlParameter("@PONumber", msPONumber) pParms(4) = New SqlClient.SqlParameter("@Date", mdPODate) pParms(5) = New SqlClient.SqlParameter("@ContactName", msContactName) pParms(6) = New SqlClient.SqlParameter ("@ContactPhone", msContactPhone) pParms(7) = New SqlClient.SqlParameter("@Comment", msComment) pParms(8) = New SqlClient.SqlParameter("@CreatedByID", miCreatedByID) pParms(9) = New SqlClient.SqlParameter ("@ModifiedByID", miModifiedByID)
Try 'perform insert If miID = 0 Then miID = SqlHelper.ExecuteScalar(msConnectionString, CommandType.StoredProcedure, "p_PurchaseOrder_Insert", pParms) Else 'perform update SqlHelper.ExecuteNonQuery(msConnectionString, CommandType.StoredProcedure, "p_PurchaseOrder_Update", pParms) End If Catch ex As Exception Save = "Duplicate" End Try
End Function
Wow!! It worked! It's ALIVE!! Using DBNull.value appears to allow
the SQLHelper DLL know to pass in a null value for both string and
numeric data. Thanks a lot Ron!
*** Sent via Developersdex http://www.developersdex.com ***
Don't just participate in USENET...get rewarded for it! This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Neal |
last post by:
I need to know how to pass a parameter from PERL to an XSLT when using
that XSLT to transform XML. For instance, I'd like to pass a paramter
that I retrieve from the queryString and pass it into...
|
by: Peter Lin |
last post by:
Dear all,
I am using Microsoft.ApplicationBlocks.Data, for one thing I am not quite sure.
Is the following static SqlHelper ExecuteReader method from source codes not thread saft in
multithread...
|
by: Rajesh Kumar |
last post by:
Hi Gregory
Thanks for your answer. I did not see any attached file so I copied your
text into a text file and named it compiler.bat
Checked the wrapped lines and runned the file. It said Dataset,...
|
by: Neven Klofutar |
last post by:
Hi,
I have a problem with SqlHelper.ExecuteScalar ...
When I try to execute SqlHelper.ExecuteScalar I get this message:
"System.InvalidCastException: Object must implement IConvertible.".
...
|
by: Brian |
last post by:
I am trying to pass a null value into a stored procedure
so that it can save the data. I am using Microsoft's
SQLHelper dll to do this. My example code is below. How
do I pass in a null value...
|
by: jacobyv |
last post by:
hi
i created survey.asp which displays the survey passed through the name
paramter in the url.
it works fine if i open the page like this.
http://url/survey.asp?name=survey1
but now i would...
|
by: raghuraman_ace |
last post by:
Hi
i have started a webservice wich has a webmethod with parameters using
literal encoding & encoded encoding . The webservice is compiled
successfully . But i don know how to pass the...
|
by: John F |
last post by:
Hello All,
What is the consensus on using sqlhelper or not using sqlhelper when calling
stored procedures?
We're trying to go with a standard for our projects and personally I prefer
not...
|
by: John A Grandy |
last post by:
I would like to pass a DataRow column value to a method that accepts an
object parameter :
MyMethod( object value ) {}
However, a problem occurs if the column value is DBNull.Value
...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge required to effectively administer and manage Oracle...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was proposed, which integrated multiple engines and...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it so the python app could use a http request to get...
|
by: Arjunsri |
last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and credentials and received a successful connection...
|
by: WisdomUfot |
last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific technical details, Gmail likely implements measures...
|
by: Matthew3360 |
last post by:
Hi,
I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web server and have made sure to enable curl. I get a...
|
by: Oralloy |
last post by:
Hello Folks,
I am trying to hook up a CPU which I designed using SystemC to I/O pins on an FPGA.
My problem (spelled failure) is with the synthesis of my design into a bitstream, not the C++...
|
by: Carina712 |
last post by:
Setting background colors for Excel documents can help to improve the visual appeal of the document and make it easier to read and understand. Background colors can be used to highlight important...
|
by: Rahul1995seven |
last post by:
Introduction:
In the realm of programming languages, Python has emerged as a powerhouse. With its simplicity, versatility, and robustness, Python has gained popularity among beginners and experts...
| |