0
votes
1answer
31 views
Avoiding NULL object in HQL Query where clause
I have an entity which might have a parent entity.
I want to run this query:
select entity where entity.parent.id = 9
some of the entity does not have parents (entity.parent = null) and N HIBERNATE …
0
votes
1answer
27 views
System.DBNull with data contract name not expected in WCF
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.
Googling it only shows …
0
votes
3answers
21 views
DBnull in Linq query causing problems
hi there
i am doing a query thus:
int numberInInterval = (from dsStatistics.J2RespondentRow item in jStats.J2Respondent
where item.EndTime > dtIntervalLower && …
2
votes
3answers
151 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 …
1
vote
3answers
275 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
179 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
426 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
967 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
873 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
542 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 …
0
votes
5answers
789 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 …
0
votes
3answers
311 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 …
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 …
1
vote
2answers
363 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 …
