active questions tagged dbnull - Stack Overflowmost recent 30 from stackoverflow.com2009-12-08T13:43:49Zhttp://stackoverflow.com/feeds/tag/dbnullhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1859696/avoiding-null-object-in-hql-query-where-clause0Avoiding NULL object in HQL Query where clauseDani2009-12-07T12:29:22Z2009-12-07T12:36:49Z
<p>I have an entity which might have a parent entity.
I want to run this query:</p>
<p>select entity where entity.parent.id = 9</p>
<p>some of the entity does not have parents (entity.parent = null) and N HIBERNATE Fails to run this query (QueryException - Could not resolve property)</p>
<p>How can I use HQL to get all the entities that has parents entities with id 9, avoiding the ones that the parent is null ?</p>
<p>(adding entity.parent is not null before the entity.parent.id = 9 results in the same exception)</p>
<p>There is an option to use a nested select statements but I don't think this is the most efficient solution.</p>
http://stackoverflow.com/questions/1845092/system-dbnull-with-data-contract-name-not-expected-in-wcf0System.DBNull with data contract name not expected in WCFLurker Indeed2009-12-04T05:45:36Z2009-12-04T15:02:11Z
<p>I have an object array that I am passing to a WCF call that has DBNull.Value as one of the values. WCF is apparently choking on it because it doesn't know how to serialize it.</p>
<p>Googling it only shows people who replaced the DBNull.Value with something else. Do I have to do that, or is there a way for me to have DBNull.Value on the client be serialized to the same thing on the server?</p>
http://stackoverflow.com/questions/1841742/dbnull-in-linq-query-causing-problems0DBnull in Linq query causing problemsnat2009-12-03T18:01:22Z2009-12-03T21:52:37Z
<p>hi there</p>
<p>i am doing a query thus:</p>
<pre><code>int numberInInterval = (from dsStatistics.J2RespondentRow item in jStats.J2Respondent
where item.EndTime > dtIntervalLower && item.EndTime <= dtIntervalUpper
select item).count();
</code></pre>
<p>there appear to be some dbnulls in the endtime column..
any way i can avoid these?</p>
<p>tried adding && where item.endtime != null.. and even != dbnull.value</p>
<p>do i have to do a second (first) query to grab all that arent null then run the above one?</p>
<p>im sure its super simple fix, but im still missing it.. as per</p>
<p>thanks
nat</p>
http://stackoverflow.com/questions/222834/handling-dbnull-data-in-vb-net2handling dbnull data in vb.netAzim2008-10-21T18:03:08Z2009-11-12T17:15:24Z
<p>I want to generate some formatted output of data retrieved from an MS-Access database and stored in a <em>DataTable</em> object/variable, myDataTable. However, some of the fields in myDataTable cotain <em>dbNull</em> data. So, the following VB.net code snippet will give errors if the value of any of the fields <em>lastname</em>, <em>intials</em>, or <em>sID</em> is <em>dbNull</em>.</p>
<pre><code> dim myDataTable as DataTable
dim tmpStr as String
dim sID as Integer = 1
...
myDataTable = myTableAdapter.GetData() ' Reads the data from MS-Access table
...
For Each myItem As DataRow In myDataTable.Rows
tmpStr = nameItem("lastname") + " " + nameItem("initials")
If myItem("sID")=sID Then
' Do something
End If
' print tmpStr
Next
</code></pre>
<p>So, how do i get the above code to work when the fields may contain <em>dbNull</em> without having to check each time if the data is dbNull as in <a href="http://stackoverflow.com/questions/105671/any-systemdbnullvalue-vs-any-is-systemdbnull">this question</a>?</p>
http://stackoverflow.com/questions/536212/how-do-i-handle-conversion-from-type-dbnull-to-type-string-is-not-valid0How do I handle Conversion from type 'DBNull' to type 'String' is not valid mEeRkAt2009-02-11T10:16:16Z2009-10-29T06:50:55Z
<p>Hi Guys,</p>
<p>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</p>
<pre><code><asp:Label ID="lblPrinter" runat="server" Text='<%# iif(eval("misc_text_2") is dbnull.value, "", iif(eval("misc_text_2") like "NA", "None", iif(eval("misc_text_2") like "KP1", "Kitchen Printer 1", iif(eval("misc_text_2") like "KP2", "Kitchen Printer 2", iif(eval("misc_text_2") like "KP3", "Kitchen Printer 3", iif(eval("misc_text_2") like "BP1", "Bar Printer 1", iif(eval("misc_text_2") like "BP2", "Bar Printer 2", iif(eval("misc_text_2") like "BP3", "Bar Printer 3", Eval("misc_text_2")))))))))%>'></asp:Label>
</code></pre>
<p>I keep on getting an error Exception Details: System.InvalidCastException: Conversion from type 'DBNull' to type 'String' is not valid.</p>
<p>I know I'm missing something, but what...</p>
<p>Thanks in advance</p>
http://stackoverflow.com/questions/1461622/how-can-i-include-dbnull-as-a-value-in-my-strongly-typed-dataset2How can I include DBNull as a value in my strongly typed dataset?Beska2009-09-22T18:01:24Z2009-09-22T18:43:22Z
<p>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 set to "System.Int32", and its AllowDBNull property set to "true".</p>
<p>I'd like to manually create a new row, and add it to this dataset. I create the row without a problem, with something like:</p>
<pre><code>MyDataSet.MyDataTableRow myRow = MySimpleDataSet.MyDataTable.NewItemRow();
</code></pre>
<p>Fine. However, when I try to set the value to DBNull:</p>
<pre><code>myRow.MyCol = DBNull.Value;
</code></pre>
<p>I'm told that I can't do it...that it can't cast that to an int. This makes sense, in a way, since I've defined it to be an int...but then how can I get DBNull in there? Am I not supposed to be able to have DBNull in there? Isn't that what the AllowDBNull property is for?</p>
<p>I'm obviously missing something fundemental. Can someone help explain what it is?</p>
<p><strong>EDIT:</strong> I also tried entering "int?" as the DataType, but Visual Studio throws an error when I enter it, saying that "Column requires a valid DataType."</p>
http://stackoverflow.com/questions/601114/dataset-field-dbnull-int0Dataset field DBNull -> int? BobClegg2009-03-02T02:45:53Z2009-09-07T06:33:25Z
<p>SQLServer int field. Value sometimes null.
DataAdapter fills dataset OK and can display data in DatagridView OK.</p>
<p>When trying to retrieve the data programmatically from the dataset the Dataset field retrieval code throws a StronglyTypedException error.</p>
<pre><code> [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
public int curr_reading {
get {
try {
return ((int)(this[this.tableHistory.curr_readingColumn]));
}
catch (global::System.InvalidCastException e) {
throw new global::System.Data.StrongTypingException("The value for column \'curr_reading\' in table \'History\' is DBNull.", e);
}
</code></pre>
<p>Got past this by checking for DBNull in the get accessor and returning null but...
When the dataset structure is modified (Still developing) my changes (unsurprisingly) are gone. </p>
<p>What is the best way to handle this situation?
It seems I am stuck with dealing with it at the dataset level.
Is there some sort of attribute that can tell the auto code generator to leave the changes in place? </p>
http://stackoverflow.com/questions/1207685/how-do-i-handle-a-dbnull-datetime-field-coming-from-the-sql-server1How do I handle a DBNull DateTime field coming from the SQL Server?Mike Wills2009-07-30T16:18:44Z2009-07-30T17:27:42Z
<p>I am getting this error when I retrieve a row with a null DataTime field:</p>
<blockquote>
<p>'srRow.Closed_Date' threw an exception of type 'System.Data.StrongTypingException'</p>
</blockquote>
<p>How do I properly handle these?</p>
http://stackoverflow.com/questions/948675/why-isnt-my-dbnull-a-singleton-when-i-deserialise-it-using-xmlserialiser3Why isn't my DbNull a singleton when I deserialise it using XmlSerialiser?ligos2009-06-04T05:03:58Z2009-07-25T23:53:13Z
<p>I've always assumed that DbNull.value was a singleton. And thus you could do things like this:</p>
<p>VB.NET:</p>
<pre><code>If someObject Is DbNull.Value Then
...
End if
</code></pre>
<p>C#:</p>
<pre><code>If (someObject == DbNull.Value)
{
...
}
</code></pre>
<p>But recently, I serialised a DbNull instance using the XmlSerialiser and suddenly it wasn't a singleton any more. Type comparison operations (like C#'s (obj is DBNull)) work OK though.</p>
<p>Code follows:</p>
<pre><code>[Serializable, System.Xml.Serialization.XmlInclude(typeof(DBNull))]
public class SerialiseMe
{
public SerialiseMe() { }
public SerialiseMe(object value)
{
this.ICanBeDbNull = value;
}
public Object ICanBeDbNull { get; set; }
}
public void Foo()
{
var serialiseDbNull = new SerialiseMe(DBNull.Value);
var serialiser = new System.Xml.Serialization.XmlSerializer(typeof(SerialiseMe));
var ms = new System.IO.MemoryStream();
serialiser.Serialize(ms, serialiseDbNull);
ms.Seek(0, System.IO.SeekOrigin.Begin);
var deSerialisedDbNull = (SerialiseMe)serialiser.Deserialize(ms);
// Is false, WTF!
var equalsDbNullDeserialised = deSerialisedDbNull.ICanBeDbNull == DBNull.Value;
// Is false, WTF!
var refEqualsDbNullDeserialised = object.ReferenceEquals(deSerialisedDbNull.ICanBeDbNull, DBNull.Value);
// Is true.
var convertIsDbNullDeserialised = Convert.IsDBNull(deSerialisedDbNull.ICanBeDbNull);
// Is true.
var isIsDbNullDeserialised = deSerialisedDbNull.ICanBeDbNull is DBNull;
}
</code></pre>
<p>Why is this the case? And how does it happen? And can it possibly happen with any other static fields? </p>
<p>PS: I am aware the VB code sample is doing a reference comparison and c# is calling Object.Equals. Both have the same behaviour with DBNull. I usually work with VB.</p>
http://stackoverflow.com/questions/927088/question-about-type-comparison-asp-net-and-dbnull1Question about Type Comparison ASP.NET and DBNullAnders2009-05-29T17:04:11Z2009-05-29T17:59:42Z
<p>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 the record, so I want to be able to parse that. I tried a simple test:</p>
<pre><code>If Row.Item("url").GetType Is GetType(DBNull) Then
//' do something here....
End If
</code></pre>
<p>However, I get the "<code>Conversion from type 'DBNull' to type 'String' is not valid.</code>" exception. The funny part is, when I do a watch on the above conditional, it returns <code>True</code> or <code>False</code>.</p>
<p>Anyone know why this is happening and/or a way to fix this? Thanks!</p>
http://stackoverflow.com/questions/920991/powershell-and-sql-parameters-if-empty-string-pass-dbnull3Powershell and SQL parameters. If empty string, pass DBNullTommy Jakobsen2009-05-28T14:00:07Z2009-05-29T03:55:32Z
<p>Hi,</p>
<p>I got this parameter:</p>
<pre><code>$objDbCmd.Parameters.Add("@telephone", [System.Data.SqlDbType]::VarChar, 18) | Out-Null;
$objDbCmd.Parameters["@telephone"].Value = $objUser.Telephone;
</code></pre>
<p>Where the string <code>$objUser.Telephone</code> can be empty. If it's empty, how can I convert it to <code>[DBNull]::Value</code>?</p>
<p>I tried:</p>
<pre><code>if ([string]:IsNullOrEmpty($objUser.Telephone)) { $objUser.Telephone = [DBNull]::Value };
</code></pre>
<p>But that gives me the error:</p>
<blockquote>
<p>Exception calling "ExecuteNonQuery" with "0" argument(s): "Failed to convert parameter value from a ResultPropertyValueCollection to a String."</p>
</blockquote>
<p>And if I convert it to a string, it inserts an empty string <code>""</code>, and not <code>DBNull</code>.</p>
<p>How can this be accomplished?</p>
<p>Thanks.</p>
http://stackoverflow.com/questions/881225/linq-to-dataset-dbnull-problem-null-reference-exception0LINQ to Dataset DBNULL problem / null reference exceptionMarc2009-05-19T06:23:18Z2009-05-25T09:14:48Z
<p>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.</p>
<pre><code>var varActiveAndUsedElementsWithDetails =
from e in dtblElements
join d in dtblDetails on e.PK equals d.FK into set
from d in set.DefaultIfEmpty()
where (e.ElementActive == true)
select new
{
ElementPK = e.PK,
Remark = d.IsRemarkNull() ? null : d.Remark
};
</code></pre>
<p>The error message was:
"The value for column 'Remark' in table 'dtblDetails' is DBNull."
After adding the test for d.IsRemarkNull() a null reference exception is thrown.</p>
<p>Can you help me with this?</p>
<p>I've already checked the following websites but didn't find anything useful other than that I have to test for DBNULL. But as said this doesn't solve my problem.</p>
<ul>
<li><a href="http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/3d124f45-62ec-4006-a5b1-ddbb578c4e4d" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/linqprojectgeneral/thread/3d124f45-62ec-4006-a5b1-ddbb578c4e4d</a></li>
<li><a href="http://blogs.msdn.com/adonet/archive/2007/02/13/nulls-linq-to-datasets-part-3.aspx" rel="nofollow">http://blogs.msdn.com/adonet/archive/2007/02/13/nulls-linq-to-datasets-part-3.aspx</a></li>
<li><a href="http://www.vbforums.com/showthread.php?t=506645" rel="nofollow">http://www.vbforums.com/showthread.php?t=506645</a></li>
</ul>
http://stackoverflow.com/questions/820752/how-do-i-set-a-field-to-dbnull-in-entity-framework1How do I set a field to DBNull in Entity FrameworkEric2009-05-04T16:13:41Z2009-05-05T20:55:59Z
<p>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 this is a necessary thing to do, but after much Google research I found nothing about it.</p>
<p>I am trying to set a datetime field in Entity Framework using vb.net. This requires me to write</p>
<pre><code> myEntity.mydate = Nothing
</code></pre>
<p>This does not set the field to null but instead sets it to the default date value which is not a valid date value in SQL Server.</p>
http://stackoverflow.com/questions/799375/sqlite-equivalent-to-isnull-nvl-ifnull-or-coalesce0SQLite equivalent to ISNULL(), NVL(), IFNULL() or COALESCE()Jason Down2009-04-28T18:57:20Z2009-04-28T19:03:55Z
<p>I'd like to avoid having many checks like the following in my code:</p>
<pre><code>myObj.someStringField = rdr.IsDBNull(someOrdinal) ? string.Empty : rdr.GetString(someOrdinal);
</code></pre>
<p>I figured I could just have my query take care of the nulls by doing something like this:</p>
<pre><code>SELECT myField1, [isnull](myField1, '')
FROM myTable1
WHERE myField1 = someCondition
</code></pre>
<p>I'm using SQLite though and it doesn't seem to recognize the isnull function. I've also tried some equivalent ones recognized in other databases (NVL(), IFNULL() and COALESCE()), but SQLite doesn't seem to recognize any of them.</p>
<p>Does anyone have any suggestions or know of a better way to do this. Unfortunately the database doesn't have default values for all fields. Plus, I need to use some LEFT JOIN clauses in some cases, where some of the fields returned will be null because the matching record in the LEFT JOIN table will not exist.</p>
http://stackoverflow.com/questions/221582/most-efficient-way-to-check-for-dbnull-and-then-assign-to-a-variable15Most efficient way to check for DBNull and then assign to a variable?ilitirit2008-10-21T11:55:52Z2009-04-20T13:49:32Z
<p>This question comes up occasionally but I haven't seen a satisfactory answer.</p>
<p>A typical pattern is (row is a <strong>DataRow</strong>):</p>
<pre><code> if (row["value"] != DBNull.Value)
{
someObject.Member = row["value"];
}
</code></pre>
<p>My first question is which is more efficient (I've flipped the condition):</p>
<pre><code> row["value"] == DBNull.Value; // Or
row["value"] is DBNull; // Or
row["value"].GetType() == typeof(DBNull) // Or... any suggestions?
</code></pre>
<p><a href="http://stackoverflow.com/questions/184681/is-vs-typeof">This</a> indicates that .GetType() should be faster, but maybe the compiler knows a few tricks I don't?</p>
<p>Second question, is it worth caching the value of row["value"] or does the compiler optimize the indexer away anyway?</p>
<p>eg.</p>
<pre><code> object valueHolder;
if (DBNull.Value == (valueHolder = row["value"])) {}
</code></pre>
<p>Disclaimers: </p>
<ol>
<li>row["value"] exists.</li>
<li>I don't know the column index of the column (hence the column name lookup)</li>
<li>I'm asking specifically about checking for DBNull and then assignment (not about premature optimization etc).</li>
</ol>
<p>Edit:</p>
<p>I benchmarked a few scenarios (time in seconds, 10000000 trials):</p>
<pre><code>row["value"] == DBNull.Value: 00:00:01.5478995
row["value"] is DBNull: 00:00:01.6306578
row["value"].GetType() == typeof(DBNull): 00:00:02.0138757
</code></pre>
<p>Object.ReferenceEquals has the same performance as "=="</p>
<p>The most interesting result? If you mismatch the name of the column by case (eg. "Value" instead of "value", it takes roughly ten times longer (for a string):</p>
<pre><code>row["Value"] == DBNull.Value: 00:00:12.2792374
</code></pre>
<p>The moral of the story seems to be that if you can't look up a column by it's index, then ensure that the column name you feed to the indexer matches the DataColumn's name exactly.</p>
<p>Caching the value also appears to be nearly <strong>twice</strong> as fast:</p>
<pre><code>No Caching: 00:00:03.0996622
With Caching: 00:00:01.5659920
</code></pre>
<p>So the most efficient method <em>seems</em> to be:</p>
<pre><code> object temp;
string variable;
if (DBNull.Value != (temp = row["value"])
{
variable = temp.ToString();
}
</code></pre>
<p>This was a good learning experience.</p>
http://stackoverflow.com/questions/594176/problem-inserting-string-or-null-into-sql-server-database0Problem inserting string or NULL into SQL Server databasereSPAWNed2009-02-27T10:04:36Z2009-02-27T10:21:58Z
<p>I just read the top answer at this post: <br>
<a href="http://stackoverflow.com/questions/374522/problem-inserting-string-or-null-into-sql-server-database">http://stackoverflow.com/questions/374522/problem-inserting-string-or-null-into-sql-server-database</a></p>
<p>Correct me if I'm wrong, but can the ??-operator not only be used on two variables of the same type, if not I would greatly appreciate it, if anyone could solve my minor problem.</p>
<p>I tried to insert some code in my project similar to the one below.</p>
<pre><code>Dictionary<string, string> strings = new Dictionary<string, string>()
{
{"@param0", strParam0},
{"@param1", strParam1},
{"@param2", strParam2}
};
foreach (string param in strings.Keys)
{
cmd.Parameters.AddWithValue(param, strings[param] ?? DBNull.Value);
}
</code></pre>
<p>But Visual Studio complains with the following message:<br>
"Operator '??' cannot be applied to operands of type 'string' and 'System.DBNull'" </p>
http://stackoverflow.com/questions/445136/how-do-i-handle-a-dbnull-to-boolean-conversion-in-my-xsd-dataset1How do I handle a DBNull to Boolean conversion in my XSD DataSet?Dillie-O2009-01-14T23:50:12Z2009-02-10T22:38:00Z
<p>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.</p>
<p>I've gone through the process of creating an XSD DataSet using the table and made sure that the AllowDBNull field is set to True.</p>
<p>However, when I pull a down record from the database into the datatable using the configured GetData method, I run into the following error:</p>
<pre><code>[InvalidCastException: Conversion from type 'DBNull' to type 'Boolean' is not valid.]
</code></pre>
<p>Do I need to specify something other than in the DefaultValue field for the column, or is there some other field to set?</p>
<p>I am in the development phase still with this project, so if changing the fields to a char and using a Y/N/NULL option is preferred, I'm not too adverse to going that way.</p>
http://stackoverflow.com/questions/105671/any-system-dbnull-value-vs-any-is-system-dbnull3(any == System.DBNull.Value) vs (any is System.DBNull)Ricardo Villamil2008-09-19T21:13:10Z2008-12-23T18:46:21Z
<p>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?</p>
<p>if (any is System.DBNull)
...</p>
<p>same as:
if (any == System.DBNull.Value)
...</p>
<p>Thanks!</p>
<p>Ricardo.</p>
http://stackoverflow.com/questions/304745/not-null-constraints-in-poco-objects1Not-Null constraints in POCO ObjectsTigraine2008-11-20T09:18:12Z2008-11-28T23:58:42Z
<p>I am currently writing an financial application, and we have a pretty standard customer table. It consists of many mandatory fields, and some optional like Cell/Fax etc.. I'm using NHibernate as a ORM and have all the mappings right. It already works.</p>
<p>I just wonder, how do I "express" in code that a field is not-null without commenting? I have the hbm.xml files that document this, but it's kinda awkward to look at them for things like this. </p>
<p>The other thing that comes to mind is that I don't want the repository to throw NHibernate Exceptions at my Logic, so maybe I should go the validation route in the Controller.
Still, how can I make the POCO code express that some fields can be null?</p>
<p><img src="http://www.tigraine.at/wp-content/uploads/2008/11/demo.png" alt="Class Diagram" /></p>
<p>As you can see, I want to have Cellular and Fax be optional while Phone mandatory. They are all just composite mappings, so the mapping file just specifies that the single elements of each have to be not-null, but I hate to do the Person.Cellular != null check all the time to avoid having a NullReferenceException.</p>
http://stackoverflow.com/questions/318567/what-is-the-best-practice-for-handling-null-int-char-from-a-sql-database1What is the best practice for handling null int/char from a SQL Database?Matt R2008-11-25T19:24:12Z2008-11-26T14:41:16Z
<p>I have a database that hold's a user's optional profile. In the profile I have strings, char (for M or F) and ints.</p>
<p>I ran into an issue where I try to put the sex of the user into the property of my Profile object, and the application crashes because it doesn't know how to handle a returned null value.</p>
<p>I've tried casting the data to the appropriate type </p>
<pre><code>char sex = (char)dt.Rows[0]["Sex"];
</code></pre>
<p>Which didn't fix my problem. I then tried changing the types to Nullable and Nullable and get conversion issues all the same. My current solution that I was able to find is the following:</p>
<pre><code>object.sex = null;
if(dt.Rows[0]["Sex"] != DBNull.Value)
object.sex = (char)dt.Rows[0]["Sex"];
object.WorkExt = null;
if(dt.Rows[0]["WorkExt"] != DBNull.Value)
object.WorkExt = (int)dt.Rows[0]["WorkExt"];
</code></pre>
<p>Is there a simpler or better way to do this? Or am I pretty much on the right track?</p>
http://stackoverflow.com/questions/218808/c-ado-net-nulls-and-dbnull-is-there-more-efficient-syntax9C# ADO.NET: nulls and DbNull -- is there more efficient syntax?Stewart Johnson2008-10-20T15:23:55Z2008-10-20T17:08:15Z
<p>I've got a <code>DateTime?</code> that I'm trying to insert into a field using a <code>DbParameter</code>. I'm creating the parameter like so:</p>
<pre><code>DbParameter datePrm = updateStmt.CreateParameter();
datePrm.ParameterName = "@change_date";
</code></pre>
<p>And then I want to put the value of the <code>DateTime?</code> into the <code>dataPrm.Value</code> while accounting for <code>null</code>s.</p>
<p>I thought initially I'd be clever:</p>
<pre><code>datePrm.Value = nullableDate ?? DBNull.Value;
</code></pre>
<p>but that fails with the error</p>
<blockquote>
<p>Operator '??' cannot be applied to operands of type 'System.DateTime?' and 'System.DBNull'</p>
</blockquote>
<p>So I guess that only works if the second argument is a non-nullable version of the first argument. So then I went for:</p>
<pre><code>datePrm.Value = nullableDate.HasValue ? nullableDate.Value : DBNull.Value;
</code></pre>
<p>but that doesn't work either:</p>
<blockquote>
<p>Type of conditional expression cannot be determined because there is no implicit conversion between 'System.DateTime' and 'System.DBNull'</p>
</blockquote>
<p>But I don't want to convert between those types!</p>
<p>So far the only thing I can get to work is:</p>
<pre><code>if (nullableDate.HasValue)
datePrm.Value = nullableDate.Value;
else
datePrm.Value = DBNull.Value;
</code></pre>
<p>Is that really the only way I can write this? Is there a way to get a one-liner using the ternary operator to work?</p>
<p><strong>Update:</strong> I don't really get why the ?? version doesn't work. MSDN says:</p>
<blockquote>
<p>The ?? operator returns the left-hand operand if it is not null, or else it returns the right operand.</p>
</blockquote>
<p>That's exactly what I want!</p>
<p><strong>Update2:</strong> Well it was kind of obvious in the end:</p>
<pre><code>datePrm.Value = nullableDate ?? (object)DBNull.Value;
</code></pre>
http://stackoverflow.com/questions/164697/net-dbnull-vs-nothing-across-all-variable-types6.NET DBNull vs Nothing across all variable types? Matias Nino2008-10-02T21:30:32Z2008-10-03T00:12:38Z
<p>I am a little confused about null values and variables in .NET. (VB preferred)</p>
<p>Is there any way to check the "nullness" of ANY given variable regardless of whether it was an object or a value type? Or does my null check have to always anticipate whether it's checking a value type (e.g. System.Integer) or an object? </p>
<p>I guess what I'm looking for is a function that checks all possible kind of null-ness. That is, any type of variables that </p>
<p>a) were never assigned a value since declared</p>
<p>b) were assigned a null value from a data object (that came from a database)</p>
<p>c) were set equals to another variable value which was null</p>
<p>d) were set to an ASP.NET session/application variable that was never set or expired.</p>
<p>Is there a general best-practice when it comes to handling null scenarios in .NET? </p>
<p>Thanks in advance for any feedback!</p>
<p><strong>UPDATE:</strong> When I talk about a value type being "null", what I really mean is a value type that was either never set or was at some point set equal to or cast from a null object. </p>
http://stackoverflow.com/questions/12836/c-database-access-dbnull-vs-null7C# Database Access: DBNull vs nullCh00k2008-08-15T22:23:21Z2008-08-23T17:57:59Z
<p>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 for getting values out of a data reader.</p>
<p>In tweaking that class to work with Oracle, we've come across an interesting question. Is it better to use DBNull.Value, or null? Are there any benefits to using DBNull.Value? It seems more "correct" to use null, since we've separated ourselves from the DB world, but there are implications (you can't just blindly ToString() when a value is null for example) so its definitely something we need to make a conscious decision about.</p>