0
votes
2answers
20 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 …
0
votes
7answers
48 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 …
4
votes
6answers
223 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 …
5
votes
3answers
139 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 …
0
votes
5answers
73 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 …
1
vote
6answers
177 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. …
1
vote
2answers
102 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
5answers
197 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 …
2
votes
9answers
121 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 …
0
votes
4answers
70 views
How can I prevent inner SELECT from returning NULL?
How can I prevent inner SELECT from returning NULL (when matches no rows) and force query to fail.
INSERT INTO tt (t1_id, t2_id) VALUES (
(SELECT id FROM t1 WHERE ...),
(SELECT id FROM t2 WHERE …
0
votes
2answers
24 views
NSNull crashes my initWithDictionary
I am parsing a JSON file.
After getting the NSDictionary, I parse the objects in the dictionary into an array of objects. However, for certain JSON files, I get NULL, which should be fine, but it …
1
vote
1answer
25 views
C# 2.0: Can MethodBase.GetCurrentMethod() return null?
I'm tracking down a NullReferenceException and the official documentation is lacking.
This is C# 2.0 code.
1
vote
6answers
149 views
Best way to check if a character array is empty
Which is the most reliable way to check if a character array is empty?
char text[50];
if(strlen(text) == 0) {}
or
if(text[0] == '\0') {}
or do i need to do
memset(text, 0, sizeof(text));
…
0
votes
2answers
50 views
SharePoint Windows Workflow breaks when we deploy it
We have developed a custom visual studio workflow for SharePoint MOSS. It creates tasks for a document approval process and works fine on our development machines. We are using a main workflow …
1
vote
1answer
19 views
Moq Mocked method returns null?
Hi, I need help with a testmethod im trying to write...
I need to test that a user can show his profile, however i encounter an error when i try to use my mocked GetProfileFromUserName method. The …
