2
votes
6answers
3k views
handling dbnull data in vb.net
I want to generate some formatted output of data retrieved from an MS-Access database and stored in a DataTable object/variable, myDataTable. However, some of the fields in myDataTable cotain dbNull …
0
votes
3answers
1k views
How do I handle Conversion from type ‘DBNull’ to type ‘String’ is not valid
Hi Guys,
I need some expect advice on how to handle the following:- I have a data field misc_text_2 that is of type varchar(25) and allows NULL. Now if I use the following syntax
<asp:Label …
2
votes
3answers
139 views
How can I include DBNull as a value in my strongly typed dataset?
I've created a strongly typed dataset (MyDataSet) in my .NET app. For the sake of simplicity, we'll say it has one DataTable (MyDataTable), with one column (MyCol).
MyCol has its DataType property …
0
votes
5answers
752 views
Dataset field DBNull -> int?
SQLServer int field. Value sometimes null.
DataAdapter fills dataset OK and can display data in DatagridView OK.
When trying to retrieve the data programmatically from the dataset the Dataset field …
1
vote
3answers
268 views
How do I handle a DBNull DateTime field coming from the SQL Server?
I am getting this error when I retrieve a row with a null DataTime field:
'srRow.Closed_Date' threw an exception of type 'System.Data.StrongTypingException'
How do I properly handle these?
3
votes
2answers
167 views
Why isn’t my DbNull a singleton when I deserialise it using XmlSerialiser?
I've always assumed that DbNull.value was a singleton. And thus you could do things like this:
VB.NET:
If someObject Is DbNull.Value Then
...
End if
C#:
If (someObject == DbNull.Value)
{
…
1
vote
8answers
412 views
Question about Type Comparison ASP.NET and DBNull
I have a function that pulls articles records from an MSSQL database. Some are URLs to PDFs, and other are actual articles stored in the SQL. The articles that are stored do not have a URL (DBNull) in …
3
votes
2answers
921 views
Powershell and SQL parameters. If empty string, pass DBNull
Hi,
I got this parameter:
$objDbCmd.Parameters.Add("@telephone", [System.Data.SqlDbType]::VarChar, 18) | Out-Null;
$objDbCmd.Parameters["@telephone"].Value = $objUser.Telephone;
Where the string …
0
votes
3answers
818 views
LINQ to Dataset DBNULL problem / null reference exception
I have the following LINQ query which always results in an error when my "Remark" column in dtblDetail is null, even though I test if it is NULL.
var varActiveAndUsedElementsWithDetails =
…
1
vote
3answers
526 views
How do I set a field to DBNull in Entity Framework
How do you set a field to DBNull in Entity Framework? The fields are strongly typed so you cannot set it equal to DBNull.Value and I did not find any method to set a field to DBNull. It seems like …
0
votes
1answer
1k views
SQLite equivalent to ISNULL(), NVL(), IFNULL() or COALESCE()
I'd like to avoid having many checks like the following in my code:
myObj.someStringField = rdr.IsDBNull(someOrdinal) ? string.Empty : rdr.GetString(someOrdinal);
I figured I could just have my …
15
votes
10answers
3k views
Most efficient way to check for DBNull and then assign to a variable?
This question comes up occasionally but I haven't seen a satisfactory answer.
A typical pattern is (row is a DataRow):
if (row["value"] != DBNull.Value)
{
someObject.Member = row["value"];
…
0
votes
3answers
305 views
Problem inserting string or NULL into SQL Server database
I just read the top answer at this post:
http://stackoverflow.com/questions/374522/problem-inserting-string-or-null-into-sql-server-database
Correct me if I'm wrong, but can the ??-operator not only …
1
vote
2answers
354 views
How do I handle a DBNull to Boolean conversion in my XSD DataSet?
In my database, I have a few columns in one of my tables that are bit (boolean) values. They are allowed to be NULL since the fields are not always going to contain data.
I've gone through the …
3
votes
8answers
938 views
(any == System.DBNull.Value) vs (any is System.DBNull)
Does any one have a preference on how to check if a value is DBNull? I've found these two statements give me the results I want, but just wondering if there's a preference?
if (any is System.DBNull)
…
