Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

30
votes
14answers
20k 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"]; ...
26
votes
5answers
14k views

C# ADO.NET: nulls and DbNull — is there more efficient syntax?

I've got a DateTime? that I'm trying to insert into a field using a DbParameter. I'm creating the parameter like so: DbParameter datePrm = updateStmt.CreateParameter(); datePrm.ParameterName = ...
13
votes
4answers
12k 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 through the same class ...
12
votes
13answers
3k views

Handle DBNull in C#

Is there a better/cleaner way to do this? int stockvalue = 0; if (!Convert.IsDBNull(reader["StockValue"])) stockvalue = (int)reader["StockValue"];
11
votes
6answers
25k 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 ...
8
votes
2answers
13k 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 : ...
6
votes
4answers
380 views

What is the point of DBNull? [closed]

In .NET there is the null reference, which is used everywhere to denote that an object reference is empty, and then there is the DBNull, which is used by database drivers (and few others) to denote... ...
6
votes
6answers
8k views

.NET DBNull vs Nothing across all variable types?

I am a little confused about null values and variables in .NET. (VB preferred) Is there any way to check the "nullness" of ANY given variable regardless of whether it was an object or a value type? ...
5
votes
2answers
189 views

Automatically convert .Net null to DBNull.Value?

I've written a utility to handle adding values to data parameters for hand-rolling sql queries. Consumption looks like utility.Add("SELECT * FROM MyTable WHERE MyColumn = {0}", myVariable, ...
5
votes
9answers
178 views

Casting a NULL value

I'm trying to populate a class object with values from a database table. The someObject.Property field is a nullable int type. someObject.Property = Convert.ToInt32(dbReader["SomeField"]); So, if ...
5
votes
4answers
84 views

In PostgreSQL (and maybe other engines), why does the UNION statement consider NULL values the same, while the UNIQUE constraint does not?

I understand that the SQL standard allows multiple NULL values in a column that is part of the UNIQUE constraint. What I don't understand is why the UNION construct (at least in PostgreSQL,) treats ...
5
votes
5answers
1k views

What is the difference between null and System.DBNull.Value?

Is there any difference between null and System.DBNull.Value? If yes, what is it? I noticed this behavior now - while (rdr.Read()) { if (rdr["Id"] != null) //if (rdr["Id"] != ...
5
votes
3answers
1k views

Dealing with DBNull.Value

I frequently have to deal with DataTables connected to grid controls, custom updating always seems to produce a lot of code related to DBNull.Value. I saw a similar question here but think there must ...
5
votes
3answers
1k views

How can DBNull not equal DBNull

I have the following line of code if (DBNull.Value.Equals(o) || o != null) where o is object o in row.ItemArray I keep getting an error of --> Xml type "List of xdt:untypedAtomic" does not ...
5
votes
2answers
6k views

Powershell and SQL parameters. If empty string, pass DBNull

I got this parameter: $objDbCmd.Parameters.Add("@telephone", [System.Data.SqlDbType]::VarChar, 18) | Out-Null; $objDbCmd.Parameters["@telephone"].Value = $objUser.Telephone; Where the string ...
5
votes
8answers
3k 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) ...
4
votes
5answers
90 views

Confused about null strings and DBNull

I'm looking at some code for a .net program I'm working on. The previous author of the program gave the code to me over a year ago. Suddenly, I am seeing an exception thrown from code that I haven't ...
4
votes
3answers
273 views

How can I assign a DBNull in a better way?

I need to parse a value from a DataRow and assign it to another DataRow. If the input is valid, then I need to parse it to a double, or else add a DBNull value to the output. I'm using the following ...
4
votes
2answers
929 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) { ...
3
votes
2answers
47 views

Check Constraints in SQL- Specify a value could be null or a constraint

I am trying to incorporate a check constraint in SQLite where the requirement is the following: The value could be null If the value is not null then it should be greater than 3. So, in my create ...
3
votes
2answers
112 views

SQL view infers nullable column from non-null table?

I have a Product table with non-null "quantity" (decimal) and "status" (int) columns, and I created a view on this table with the following case expression: SELECT P.ProductTypeId, (CASE WHEN ...
3
votes
4answers
2k views

Finding null value in Dataset - DataRow.IsNull method vs ==DbNull.Value - c#

What are the benefits of using the c# method DataRow.IsNull to determine a null value over checking if the row equals DbNull.value? if(ds.Tables[0].Rows[0].IsNull("ROWNAME")) {do stuff} vs ...
3
votes
4answers
556 views

Checking for DBNull throws a StrongTypingException

I am using a dataset to pull data from a DB. One of the fields in a row is NULL. I know this. However, the following vb.net code throws a StrongTypingException (in the autogenerated get_SomeField() ...
3
votes
4answers
572 views

Operator '??' cannot be applied

Why is the following code invalid? sqlCommandObject.Parameters.AddWithValue("@Parameter", table.Value ?? DBNull.Value); This code line creates the following compile error: Operator '??' cannot ...
3
votes
3answers
636 views

C# ?? null coalescing operator question

I have defined Class Person property Birthday as nullable DateTime? , so why shouldn’t the null coalescing operator work in the following example? cmd.Parameters.Add(new SqlParameter("@Birthday", ...
3
votes
3answers
313 views

What should I use to compare DBNull ? Using DBNull.Value or ToString().IsNullOrEmpty()

I can check for a DBnull on a data row using any of the methods. Either by using if(dr[0][0]==DBNull.Value) //do somethin or by doing if(dr[0][0].ToString().IsNullOrEmpty()) //do something In ...
3
votes
7answers
293 views

Why can't I use '??' operand for System.DBNull value?

I have an Oracle data table fetching columns that be null. So I figure to keep the code nice and simple that I'd use the ?? operand. AlternatePhoneNumber is a string in my C# model. ...
3
votes
3answers
1k views

Linq and DBNull - Getting error

I'm getting an error when selecting from a rows.AsEnumerable(). I am using the following code... var rows = ds.Tables[0].AsEnumerable(); trafficData = rows.Select(row => new ...
3
votes
1answer
1k views

Filtering DBNull With LINQ

Why does the following query raise the error below for a row with a NULL value for barrel when I explicitly filter out those rows in the Where clause? Dim query = From row As dbDataSet.conformalRow ...
3
votes
3answers
2k views

cannot insert DBNULL value into sql server

Why i get this error? Object cannot be cast from DBNull to other types. when i inserted null value for a numeric datatype in sql server 2005 Here is my code, if (MeasurementTr.Visible == true) ...
3
votes
4answers
1k 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 ...
2
votes
2answers
211 views

How to determine if a parameter value was passed to a stored procedure

I want to create a stored procedure (in SQL Server 2008 R2) that will update a record in a table based on the table's PK. The stored proc will have, for example, four parameters: @ID int, @Name ...
2
votes
3answers
166 views

?? operator in system.DBNull

Is there an operator or built in function to simplyfy this: myVal = object1.object2.something(a,b).dataColumn.toString()==""?object1.object2.something(a,b).dataColumn.toString():"-"; I know i can ...
2
votes
4answers
142 views

What Is DBNull Needed For Anyway? [closed]

Possible Duplicate: What is the point of DBNull? Since the beginning of my adventure with .NET I have always asked myself one question: why do we need the DBNull type? Is a simple null ...
2
votes
4answers
434 views

DBNull to String in ASP.NET inline expressions has casting error

Hey guys, a table in my database has a field "Description" that Allow's Nulls'. This causes a problem when rendering the page in ASP.NET since I want to make sure I'm decoding the string as its coming ...
2
votes
3answers
170 views

How does one reliably check if a nullable property contains no data? DBNull is killing me

I've begun using Massive, by Rob Conery. Awesome little "ORM" and very performant. However, I'm running into issues with System.DBNull comparisons on my nullable fields. For example, I want to check ...
2
votes
2answers
2k views

Passing blank field value to stored procedure ASP .NET C#

I want to return all rows from a SQL Server 2008 database table into a SQL data source if a textBox field is blank. So I made a stored procedure with an if @date IS NULL clause. Although the stored ...
2
votes
3answers
724 views

Updating column with Null value

I have a date field (smalldatetime) in a table and in particular cases I need to set the date field to null. Currently, when setting the sqlparameter.value property to a date endDateParam.Value = ...
2
votes
3answers
1k views

C#/Oracle10g = null vs DBNull.Value vs String.Empty

I'm making my first forays into Accessing Oracle from C#. I've discovered that that Oracle doesn't like VarChar parameters to have value of null (C#). I would have hoped that there would be some ...
2
votes
3answers
825 views

LINQ Replace DBNull with Blank String

In this example, an error is raised if either row.FirstName or row.LastName are NULL. How do I rewrite the Select clause, to convert a DBNull value to a blank string ""? Dim query = From row As ...
2
votes
3answers
4k 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 ...
1
vote
3answers
43 views

VB.NET: How do I use coalesce with db column values and nullable types? Or is there a better solution?

I'm trying to do something similar to what's described here, but with nullable types. http://www.csharp-station.com/Tutorials/Lesson23.aspx int availableUnits = unitsInStock ?? 0; In VB, it would ...
1
vote
3answers
185 views

ExecuteScalar returns null or DBNull (development or production server)

I'm trying to add a column to an existing DataRow in C#. Afterwards the column will be filled with a single value from my database. DataRow dr already exists and column "COLNAME" also exists. comTBP ...
1
vote
2answers
130 views

System.IndexOutOfRangeException on SQLDataReader Value Using C#

I have a SQLDataReader that returns three integers. However, there are occasions when two of the integers will return null values. To get round this I wrote the following: int shoppingCartHeadID = ...
1
vote
3answers
142 views

String.IsNullOrWhiteSpace in vb.net throw error if value is dbnull.value

String.IsNullOrWhiteSpace(valuefromDB) throws error if valuefromDB is dbnull.value Is that correct?? I thought of this function will also handles the dbnull.value
1
vote
2answers
97 views

Handling DBNull and null in ASP.NET

What is the best way of rewriting these (erroneous) lines? bool? result = dr["result"] == DBNull.Value ? null : Convert.ToInt32(dr["result"]); ...and... dr["result"] = result ?? ...
1
vote
2answers
286 views

Linq to DataTable - Cannot cast DBNull

New to Linq, so apologies if this is basic. This query is throwing up the error {"Cannot cast DBNull.Value to type 'System.Int64'. Please use a nullable type."} when I enumerate the results. ...
1
vote
2answers
122 views

DropDownList can't bind to DbNull

I have a DropDownList trying to bind to DbNull and it's not happy about it. I've seen advice about creating a ListItem with value=" " but this isn't working. Any help would be much appreciated.
1
vote
1answer
198 views

Two way binding with custom expression?

I am using a gridview in my asp.net project to view and modify some records from the database. The database has two columns: start_date and end_date. When a new record is created these columns ...
1
vote
3answers
369 views

VB.Net is my issue with DataRow.IsNull or Format(datetimevalue,“T”)?

I am working on a new ASP.Net 4.0 data driven app. In the DAL I check for NULL values on all my data and default to the proper data when NULL. I have a strange issue going on. Two dates are coming ...

1 2