Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

20
votes
3answers
10k views

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

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: Name.objects.filter(alias!="") ...
6
votes
5answers
10k 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?
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
4answers
2k 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 ...
3
votes
1answer
240 views

Powershell: Why does (gci c:\ddd).count on an Empty folder not return 0

Why does (gci c:\ddd).count on an Empty folder not return 0 but "nothing" I just get an Error "You cannot call a method on a null-valued expression." When my count-condition does not match. What do ...
3
votes
1answer
36 views

executing null values records

i am trying to execute the records that have TotalTime null value from the table NewTimeAttendance...TotalTime datatype nchar(10) select * from newtimeattendance where TotalTime = 'NULL' ...
3
votes
6answers
12k views

Passing null arguments to C# methods

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 ...
3
votes
5answers
6k 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 ...
2
votes
3answers
53 views

MYSQL : If no data

i have a mysql query: $products = mysql_query("SELECT * FROM dpweb_products WHERE id='$id'") or die(mysql_error()); $row = mysql_fetch_array($products); what i want to know is if this row is empty: ...
2
votes
2answers
678 views

ASP.NET Drop Down List error with null values in SqlDataSource

I have a drop down list on a form view which are both bound to different data sources. When trying to run the program I am getting 'ddlFieldName' has a SelectedValue which is invalid because it does ...
2
votes
8answers
12k 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
5answers
682 views

Javascript document.getElementById(“id”).value returning null instead of empty string when the element is an empty text box

I have a text box element whose value I am trying to access using document.getElementById("id-name").value. I find that the call is returning a null instead of empty string. The data-type of the ...
1
vote
3answers
1k 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
441 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 ...
0
votes
0answers
44 views

Pass a Null Value Dynamically in Fetch

I need to pass a NULL Value (sometimes is null) in one condition (of 5). for example " <q1:FilterOperator>And</q1:FilterOperator>" + " ...
0
votes
1answer
111 views

How can Groovy Beans standard constructors deal with null values?

I am trying to build a microsimulation model with Groovy, but I am stuck with a problem that I traced back to Groovy’s handling of null values in Groovy Bean constructors. In short, the constructor ...
0
votes
0answers
27 views

Null value in a field that is not a variant data type

I am. Neither table is complete, in that some tields are blank an Access 2010 novice. I built two tables over the course of 2 years for 2 different school classes, and now i want to Append one to the ...
0
votes
2answers
400 views

MS Access Schema Decision: Multiple Tables or a lot of Null Values?

I found this thread which helps my understanding somewhat, but does not answer my question: SQL: Using NULL values vs. default values My Question: If I am creating a schema (in an MS Access ...
0
votes
1answer
150 views

Dealing with null values in F#

As you can see by the mass of questions I'm asking, I'm really getting deeper and deeper into F# :) Another doubt approaches my learning path: null values. How to handle them considering that it is ...
0
votes
1answer
476 views

NullValueInNestedPathException for Bean[] class binding

Hello I'd like to ask if you can assign arrays of beans as a form for example i have a form: PageForm{ Group[] groupArray; Group[] getGroupArray(){ return groupArray; } void ...
0
votes
3answers
343 views

SQL Server: set NULL value to today's value

I have a column EntryDate in a SQL Server database. How can I set a NULL value to fill it with today's date (server time) if value was not provided in a query?
0
votes
1answer
458 views

Combobox with null value - SelectedItem binding

I would like to have a combobox with cities options to choose, one of the option is an empty option (no city). The itemsource is binded to the List of "City" objects. The List contains null value to ...
0
votes
4answers
9k 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 ...