Tagged Questions

2
votes
4answers
1k views

DateTimePicker Null Value (.NET)

What's the easiest/most robust way of altering the DateTimePicker control to allow the user to enter 'null' values?
1
vote
2answers
604 views

Django filter — How do I go about filtering for emply or NULL names in a queryset

Hi, I have first_name, last_name & alias (optional) which I need to search for. So, I need a query to give me all the names that have an alias set. Only if I could do: …
1
vote
7answers
1k views

SQL QUERY replace NULL value in a row with a value from the previous known value

I have 2 columns date number ---- ------ 1 3 2 NULL 3 5 4 NULL 5 NULL 6 2 ....... I need to replace …
1
vote
3answers
561 views

Validate if a column has a null value

Which SQL would be faster to validate if a particular column has a null value or not, why? 1) SELECT * FROM TABLE1 WHERE COL1 IS NULL Execute this query and then check if you are able to read any …
1
vote
3answers
277 views

Stored Procedure parameter inserting wrong value

Good afternoon everyone, I am having an issue with a stored procedure inserting an incorrect value. Below is a summarization of my stored procedure ... set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go …
3
votes
6answers
2k views

Passing null arguments to C# methods

Hi, Is there a way to pass null arguments to C# methods (something like null arguments in c++)? For example: Is it possible to translate the following c++ function to C# method: private void …
0
votes
4answers
2k views

SQL nvl equivalent - without if/case statements & isnull & coalesce

Are there any nvl() equivalent functions in SQL? Or something close enough to be used in the same way in certain scenarios? UPDATE: no if statementsno case statementsno isnullno coalesce select …
2
votes
4answers
525 views

Java method dispatch with null argument

Why does it (apparently) make a difference whether I pass null as an argument directly, or pass an Object that I assigned the value null? Object testVal = null; test.foo(testVal); // dispatched to …
0
votes
1answer
422 views

How to insert a null value with Qt?

Hello everybody! Tip me plase, how to insert a null value into table using Trolltech Qt 4.x SQL classes? QSqlQuery, I guess, or something else from QtNetwork. As analog of it, in .NET there is the …
2
votes
3answers
2k views

Setting DataGridView.DefaultCellStyle.NullValue to null at designtime raises error at adding rows runtime.

In Visual Studio 2008 add a new DataGridView to a form Edit Columns Add a a new DataGridViewImageColumn Open the CellStyle Builder of this column (DefaultCellStyle property) Change the NullValue …
6
votes
6answers
3k 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? …