2
votes
3answers
105 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 …
1
vote
3answers
238 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 …
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
…
3
votes
2answers
154 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 == …
0
votes
5answers
697 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 …
3
votes
2answers
798 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;
…
0
votes
3answers
740 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 varActiveAndUsedElementsWithD …
1
vote
8answers
355 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 ha …
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.Memb …
0
votes
1answer
839 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 co …
1
vote
3answers
493 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 DBNu …
2
votes
5answers
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 myDataT …
7
votes
6answers
4k views
C# Database Access: DBNull vs null
We have our own ORM we use here, and provide strongly typed wrappers for all of our db tables. We also allow weakly typed ad-hoc SQL to be executed, but these queries still go thro …
3
votes
8answers
879 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 (a …
0
votes
3answers
285 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 …
