Tagged Questions

0
votes
1answer
33 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
28 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
22 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
154 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?
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
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 …
3
votes
2answers
975 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 …
3
votes
2answers
180 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) { …
0
votes
5answers
796 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 …
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
881 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
8answers
430 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 …
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 …
1
vote
3answers
547 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 2 next
15 30 50 per page