0
votes
2answers
20 views
Computed bit column that returns whether another column is null
I try to have this computed column:
CREATE TABLE dbo.Item
(
ItemId int NOT NULL IDENTITY (1, 1),
SpecialItemId int NULL,
--I tried this
IsSpecialItem AS ISNULL(SpecialItemId, 0) > …
5
votes
9answers
370 views
Why does NULL = NULL evaluate to false in SQL server
In SQL server if you have nullParam=NULL in a where clause, it always evaluates to false. This is counterintuitive and has caused me many errors. I do understand the IS NULL and IS NOT NULL keywords …
0
votes
1answer
17 views
SQL - MS ACCESS - Show Cells with NULL value with 0
Hi, I tried to write a query in access.
My aim is;
To get results of how many surgeries are done in one day.
Problem is;
Result are giving me dates and how many surgeries are done but days without …
6
votes
6answers
210 views
Should References in Object-Oriented Programming Languages be Non-Nullable by Default?
Null pointers have been described as the "billion dollar mistake". Some languages have reference types which can't be assigned the null value.
I wonder if in designing a new object-oriented language …
1
vote
5answers
278 views
c++ checking for this == null
Does it ever make sense to check for this == null?
Say I have a class A and it has a function MethodA. Inside MethodA, I check if this == null, and if it is, return an error code.
If this == null …
5
votes
6answers
249 views
why is null not equal to null false
I was reading this article:
http://stackoverflow.com/questions/191640/get-null-null-in-sql
And the consensus is that when trying to test equality between two (nullable) sql columns, the right …
3
votes
1answer
57 views
Regex.MatchData returning null: why not Option[String]?
Is there any particular reason why Regex.MatchData.group(i: Int): java.lang.String returns null rather than Option[String]?
Is there a "Scala Way" to handle nulls in Scala?
0
votes
1answer
46 views
Parameter unexpectedly initialized when invoked from unit test
I have a unit test invoking a constructor, passing in a "null" on purpose to test the handling of the null.
I expect the method invoked to throw an ArgumentNullException, but when I step through the …
0
votes
7answers
57 views
testing inequality with columns that can be null
So, I asked a question this morning, which I did not phrase correctly, so I got a lot of responses as to why NULL compared to anything will give NULL/FALSE.
My actual question was, what is the time …
0
votes
2answers
31 views
Set value if it is NULL in sql - Access 2007.
Is it possible to set a value to values who is NULL?
The sql I use now is this:
SELECT date
FROM Activity
WHERE date BETWEEN [Forms]![Search]![fromDate] AND [Forms]![Search]![toDate]
But the …
1
vote
6answers
178 views
objectForKey stringValue crashing my app?
I have a class that I use to setup objects in an array. In this class I have a custom "initWithDictionary", where I parse a JSON dictionary. However, as I am running into NSNull, this crashes my app. …
0
votes
5answers
84 views
Another Javascript Undefined Null Question
So I have been through most of the questions here. Also quite a few articles good and bad.
One thing I am looking for some additional clarification on is how undefined and un declared variables are …
2
votes
5answers
202 views
Library redefines NULL
I'm working with a library that redefines NULL. It causes some problems with other parts of my program. I'm not sure what I can do about it. Any idea? My program's in C++, the library's in C.
#ifdef …
1
vote
2answers
107 views
Null Object Pattern, Recursive Class, and Forward Declarations
Hi folks,
I'm interested in doing something like the following to adhere to a Null Object design pattern and to avoid prolific NULL tests:
class Node;
Node* NullNode;
class Node {
public:
…
2
votes
9answers
127 views
Using the ternary operator to determine a variable is not null and assigning it to another
Is this an acceptable coding practice?
public class MessageFormat {
private static final Color DEFAULT_COLOR = Color.RED;
private Color messageColor = DEFAULT_COLOR;
public …
