Tagged Questions

0
votes
1answer
24 views

Simple math question with LinQ, simple Join query, Nulls, etc.

I have 2 tables   1. Client   2. Operations Operations can result in: Credits or Debits ('C' or 'D' in a char field) along with date and ammount fields. I must calculat …
2
votes
2answers
26 views

Optimize Join sentence with foreign keys, and show records with nulls

Hi guys I have the following structure SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO"; CREATE TABLE IF NOT EXISTS `sis_param_tax` ( `id` int(5) NOT NULL auto_increment, `description` v …
2
votes
6answers
295 views

C++ nil vs NULL

OK, I have some C++ code in a header that is declared like this: void StreamOut(FxStream *stream,const FxChar *name = nil); and I get: error: 'nil' was not declared in this sc …
0
votes
3answers
48 views

How to store NULL values in datetime fields in MySQL?

I have a "bill_date" field that I want to be blank (NULL) until it's been billed, at which point the date will be entered. I see that MySQL does not like NULL values in datetime f …
0
votes
5answers
244 views

NULL definition problem on 64 bit system

I'm running on RHEL 5.1 64 bit platfrom using gcc 4.1.2. I have a utility function: void str_concat(char *buff, int buffSize, ...); which concats char * passed in variadic list …
0
votes
2answers
19 views

JSP Portlet not submitting form values

Hi, I am using Liferay portal 5.x. I have deployed a simple portlet ( uses jsp & servlet extending GenericPortlet). This portlet will contain username & password field. I a …
0
votes
2answers
30 views

JPA join column with null values

I have a query that works in plain SQL but is not working on JPA and can't figure out why. As you can guess from the title I have a clue but I don't know how to "fix" it. Here's t …
5
votes
10answers
419 views

null objects vs. empty objects

[ This is a result of Best Practice: Should functions return null or an empty object? but I'm trying to be very general. ] In a lot of legacy (um...production) C++ code that I've …
3
votes
1answer
111 views

null pointer equivalence to int

In "The C++ Programming Language", Bjarne writes that the null pointer is not the same as the integer zero, but instead 0 can be used as an pointer initializer for a null pointer. …
0
votes
5answers
33 views

Returning the value of a new CheckBox in Flex Air

I am trying to save settings to an XML File and setting the relevant data if the check box is checked or not. private static function createXMLData():void { prefsXML = <pr …
5
votes
8answers
336 views

Why/When to use (!!p) instead of (p != NULL)

In the following code, what is the benefit of using (!!p) instead of (p != NULL)? AClass *p = getInstanceOfAClass(); if( !!p ) // do something else // do something without ha …
1
vote
1answer
89 views

Objective-C uninitialized pointers vs null pointers

Maybe my memory has gone completely wacko, but I think I remember that declaring pointers without initializing them made them point to nil. But recently this doesn't seem to be the …
0
votes
2answers
12 views

How to get past null characters in a file posted to an asp.net form?

I have an asp.net MVC application that takes in uploaded NMEA track files from small GPS loggers. In some cases, the loggers will inject null (0x0) values into the track file text …
0
votes
1answer
20 views

Why does bcp output null when the column contains an empty string and empty string when the column is null?

This struck me as really weird behaviour and I spent a while checking for bugs in my code before I found this "out copies from the database table or view to a file. If you specify …
0
votes
3answers
92 views

how to fix a document.body is null-error

Hi, I'm having a document.body is null error in my javascript because I use: $(window).width() as value to assign to a variable in my $(document).ready(function(){}); I …

1 2 3 4 5 23 next
15 30 50 per page