0
votes
2answers
53 views
Addition with NULL values
In a stored procedure (Oracle in my case), I want to add some values to an existing record. Problem is that both the existing value and the value to be added can be null. I only wa …
0
votes
5answers
95 views
why it returns null password???
In my Generator class ,I make a new password and also I have a SystemManagements class which imports Generator class (it is in the other package) and I have some information like n …
1
vote
8answers
260 views
C++: NULL 0x0 or 0?
Hey,
I know that you are supposed to use 0 instead of NULL in c++ (even though NULL is defined as 0 in c++ most of the time). Recently I came across some code where "0x0" was use …
0
votes
1answer
15 views
Crystal Reports: How do I allow “set to null” when prompting for values to pass to subreports?
I have created a report which links into subreports. I created parameter fields to feed into the parameters of the subreports using subreport links.
If I do not add a subreport l …
1
vote
2answers
68 views
COALESCE with NULL
I found this snippet of SQL in a view and I am rather puzzled by it's purpose (actual SQL shortened for brevity):
SELECT
COALESCE(b.Foo, NULL) AS Foo
FROM a
LEFT JOIN b ON b. …
0
votes
2answers
37 views
Javascript - Remove references to my object from external arrays
I have a problem with dereferencing a Javascript object and setting it to NULL.
Here, I have a Folder implementation that supports recursive subdirectory removal. Please see my c …
2
votes
7answers
126 views
SQL “Join” on null values
For reasons beyond my control, I need to join two tables and I need null values to match. The best option I could think of was to spit out a UUID and use that as my comparison valu …
2
votes
2answers
30 views
Non-Null Foreign Keys as Database Standard
Background: today, an issue arose while using SQL Server Reporting Services. It seems that SSRS drop-down parameters in the report viewer don't allow you to indicate a (null) optio …
1
vote
2answers
91 views
StringUtils.defaultString euphemism for collections?
Is there an analogous method to StringUtils.defaultString for collections, so you can avoid checking for null value, since in most cases, the desired effect is the same as if it we …
0
votes
3answers
29 views
Getting error when trying to use stage.height to place a graphic
Hey peepz! I have this footer image, that I want to align to the bottom of the stage, however I'm getting errors.
As you can see I have an ADDED_TO_STAGE listener in the construct …
3
votes
4answers
77 views
Is there a better solution to check many variables to see if one of them is null in PHP?
On a php file that many variables are received by $_REQUEST[] or $_POST[], and I have to check them in case the value is null with the function isset(), it is quite troublesome. Is …
0
votes
3answers
37 views
SELECT the newest record with a non null value in one column
Hi there
I have table data which looks like this
id | keyword | count | date
1 | ipod | 200 | 2009-08-02
2 | ipod | 250 | 2009-09-01
3 | ipod | 150 | 2009-09-04
4 | ipod | NULL | …
1
vote
8answers
212 views
C++ std::string and NULL const char*
I am working in C++ with two large pieces of code, one done in "C style" and one in "C++ style".
The C-type code has functions that return const char* and the C++ code has in nume …
2
votes
1answer
120 views
Adding missing NULL checks after malloc with coccinelle
I want to write a semantic patch for coccinelle, so that it will add if (ptr == NULL) ... checks after calls to malloc where they are missing.
Let's say I have the following input …
1
vote
1answer
29 views
SELECT all the newest record distinct keyword with a non null value in one column
Hello again...
Following on from this question
http://stackoverflow.com/questions/1740199/select-the-newest-record-with-a-non-null-value-in-one-column
I know have a problem where …
