473,626 Members | 3,294 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

SQLHelper not allowing me to pass Null paramter

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.SqlPa rameter

pParms(0) = New SqlClient.SqlPa rameter("@ID", miID)
pParms(1) = New SqlClient.SqlPa rameter("@Vendo rID",
miVendorID)
pParms(2) = New SqlClient.SqlPa rameter("@Statu sID",
miStatusID)
pParms(3) = New SqlClient.SqlPa rameter("@PONum ber",
msPONumber)
pParms(4) = New SqlClient.SqlPa rameter("@Date" ,
mdPODate)
pParms(5) = New SqlClient.SqlPa rameter("@Conta ctName",
msContactName)
pParms(6) = New SqlClient.SqlPa rameter
("@ContactPhone ", msContactPhone)
pParms(7) = New SqlClient.SqlPa rameter("@Comme nt",
msComment)
pParms(8) = New SqlClient.SqlPa rameter("@Creat edByID",
miCreatedByID)
pParms(9) = New SqlClient.SqlPa rameter
("@ModifiedByID ", miModifiedByID)

Try
'perform insert
If miID = 0 Then
miID = SqlHelper.Execu teScalar(msConn ectionString,
CommandType.Sto redProcedure, "p_PurchaseOrde r_Insert",
pParms)
Else
'perform update
SqlHelper.Execu teNonQuery(msCo nnectionString,
CommandType.Sto redProcedure, "p_PurchaseOrde r_Update",
pParms)
End If
Catch ex As Exception
Save = "Duplicate"
End Try
End Function
Jul 19 '05 #1
3 8396
You need to use "nothing" insted of "null" in .net

"Brian" <bs********@pds pc.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.SqlPa rameter

pParms(0) = New SqlClient.SqlPa rameter("@ID", miID)
pParms(1) = New SqlClient.SqlPa rameter("@Vendo rID",
miVendorID)
pParms(2) = New SqlClient.SqlPa rameter("@Statu sID",
miStatusID)
pParms(3) = New SqlClient.SqlPa rameter("@PONum ber",
msPONumber)
pParms(4) = New SqlClient.SqlPa rameter("@Date" ,
mdPODate)
pParms(5) = New SqlClient.SqlPa rameter("@Conta ctName",
msContactName)
pParms(6) = New SqlClient.SqlPa rameter
("@ContactPhone ", msContactPhone)
pParms(7) = New SqlClient.SqlPa rameter("@Comme nt",
msComment)
pParms(8) = New SqlClient.SqlPa rameter("@Creat edByID",
miCreatedByID)
pParms(9) = New SqlClient.SqlPa rameter
("@ModifiedByID ", miModifiedByID)

Try
'perform insert
If miID = 0 Then
miID = SqlHelper.Execu teScalar(msConn ectionString,
CommandType.Sto redProcedure, "p_PurchaseOrde r_Insert",
pParms)
Else
'perform update
SqlHelper.Execu teNonQuery(msCo nnectionString,
CommandType.Sto redProcedure, "p_PurchaseOrde r_Update",
pParms)
End If
Catch ex As Exception
Save = "Duplicate"
End Try
End Function

Jul 19 '05 #2
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********@pds pc.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.SqlPa rameter

pParms(0) = New SqlClient.SqlPa rameter("@ID", miID)
pParms(1) = New SqlClient.SqlPa rameter("@Vendo rID",
miVendorID)
pParms(2) = New SqlClient.SqlPa rameter("@Statu sID",
miStatusID)
pParms(3) = New SqlClient.SqlPa rameter("@PONum ber",
msPONumber)
pParms(4) = New SqlClient.SqlPa rameter("@Date" ,
mdPODate)
pParms(5) = New SqlClient.SqlPa rameter("@Conta ctName",
msContactName)
pParms(6) = New SqlClient.SqlPa rameter
("@ContactPhone ", msContactPhone)
pParms(7) = New SqlClient.SqlPa rameter("@Comme nt",
msComment)
pParms(8) = New SqlClient.SqlPa rameter("@Creat edByID",
miCreatedByID)
pParms(9) = New SqlClient.SqlPa rameter
("@ModifiedByID ", miModifiedByID)

Try
'perform insert
If miID = 0 Then
miID = SqlHelper.Execu teScalar(msConn ectionString,
CommandType.Sto redProcedure, "p_PurchaseOrde r_Insert",
pParms)
Else
'perform update
SqlHelper.Execu teNonQuery(msCo nnectionString,
CommandType.Sto redProcedure, "p_PurchaseOrde r_Update",
pParms)
End If
Catch ex As Exception
Save = "Duplicate"
End Try
End Function

Jul 19 '05 #3
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!
Jul 19 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
4391
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 XSLT which will create my HTML. Here's what I have for the basic transformation: #!/usr/local/bin/perl use XML::XSLT;/
0
1633
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 environment? Do we need to use lock or monitor to protect our data in the static method in multithread environment? Do the following codes have the reentry problem in multithread environment because I have threads that use SqlHelper to get data...
0
1639
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, Datareader and some other things are not defined. So I entered the : Imports Microsoft.ApplicationBlocks.Data Imports system Imports system.data Imports System.Data.SqlClient
7
12008
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.". Help ... Thanx, Neven
6
383
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 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...
1
1808
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 like to include survey.asp in a different asp file, let's call it main.asp, and display several surveys.
0
2080
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 parameters that satisfy these encodings . My web method is ---------------------------------------------
4
2119
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 using sqlhelper, but some here do. I'm just curious if there are any good arguments for or against it... Thanks,
1
2930
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 MyMethod( DataRow );
0
8701
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8637
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
8502
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6122
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
5571
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4090
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4196
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2623
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1507
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.