Null means *nothing* or *unknown* (depending on context)

learn more… | top users | synonyms (2)

0
votes
2answers
18 views

Postgresql timestamp and NULL difference

I'm novice in PostgreSQL. I have a column timestamp without time zone named FailureTime. At the beginning it has NULL value. When SELECT I need to get all entries that has current_timestamp - ...
0
votes
6answers
47 views

Datetime nullable issue

I am sending datetime to a function like: MyFunction((DateTime)MethodDateTime); Whereas my MethodDateTime is of DateTime datatype and contains null value. Because of this while executing, it gives ...
0
votes
0answers
5 views

Find whether a column is null or not in Dataset

How to find whether a column in Data Table is Null (or) Not. If my Dataset(DS) contains 1 Data_Table, and 2 columns. I want to check whether the Column 2 is Null (or) Not.
0
votes
5answers
51 views

Making a variable null before re-using the same variable again in Java

I am just checking regex for some expressions and in the method, I am reusing the variable again and again Pattern pattern = Pattern.compile("([^test])"); Matcher matcher = ...
0
votes
0answers
29 views

MySQL - select into variables in trigger results in null

I'd like to calculate a column in a table with a trigger but i only get NULL as the result for points. I declared 2 local variables to not perform 2 queries to get the values. I think, the ...
0
votes
1answer
7 views

null reference object showing error

I have locationid in candidates table. I want to show this one in details page. If Locationid is empty means db stored 0 value. otherwise the id value is there. when I try to display in details page, ...
0
votes
1answer
28 views

function to check if value exists - php

I was wondering if it is possible to have a general system function that checks for a value and if it doesn't exist return another value. below is what I have come up with however if I use it on a ...
1
vote
2answers
35 views

Javascript regex split reject null

Is it possible to make a JavaScript regex reject null matches? Can the String.split() method be told to reject null values? console.log("abcccab".split("c")); //result: ["ab", "", "", "ab"] ...
2
votes
2answers
38 views

Uninitialized Object vs Object Initialized to NULL

I'm working in Java. I commonly setup some objects as such: public class Foo { private SomeObject someName; // do stuff public void someMethod() { if (this.someName != null) { ...
2
votes
3answers
98 views

Subtracting null pointer from a normal pointer?

I came across this function: int foo(int *p) { return p - (int*)0; } Can someone explain what this does?? It seems to return an integer. Whats the logic behind this subtraction a ...
1
vote
1answer
27 views

How to check MySQL results to determine if field is empty across results

I have some fairly complex MySQL queries that return about 30 fields. I am doing some conditional formatting for a report and need to determine if any of those fields are empty across all of the ...
3
votes
1answer
65 views

Convert Seq[Option[T]] to Seq[T]

I have a collection of Option[T], and now I want to extract values from it. But I also want the new collection to exclude Nones. val foo = List(None, None, Some(1), None, Some(2)) The first idea ...
0
votes
3answers
88 views

Why when I insert a DateTime null I have “0001-01-01” in SQL Server?

I try to insert the value null (DateTime) in my database for a field typed 'date' but I always get a '0001-01-01'. I don't understand, this field "allow nulls" and I don't know why I have this default ...
0
votes
1answer
9 views

object reference not set to an object when display location

I have Locations column in my site. In database there is separate tables for , Country State city Region These all table id's are stored into Locations table then Location Table Id is referred to ...
1
vote
2answers
48 views

returning a null value from database as a string value

I am extracting records from a database and some of the fields do not have values (null). I would like to extract them as string values, how can I do this? I have tried the following but get an ...
0
votes
1answer
25 views

How to get past Null error?

I have an asp/razor web page which I am using to populate lens data and their options. I want to return a value called SID if it exists and if not then be blank. I am using if statment to do this ...
0
votes
3answers
80 views

Potential null pointer access

I encounter a strange situation that is currently not that clear to me: When having the potential null pointer access warning enabled in Eclipse, I get warnings like in the following (the warnings ...
0
votes
1answer
34 views

Thread exiting with uncaught exception group=0x40015560

Gday guys, im having an issue with an assignment for uni. The idea is that a particle is created when and where the screen is touched. Im getting an uncaught exception when the program attempts to ...
1
vote
1answer
20 views

LINQ to SQL exception when converting nullable value to non-nullable using Convert

Problem Given the following: class MyClass { public DateTime DateTime { get; set; } } and a queryable, where MyTable.NullableDateTime is a DateTime? mapped to an SQL datetime: ...
0
votes
1answer
83 views

Haskell - implement a function for a given signature

I have to implement an example function with following signature: [[([Char], a, b)]] -> (a -> b -> Char) -> ([Char], b -> a -> Char) So I attempt this way: funcD ...
0
votes
1answer
23 views

Mongo query returns null even though entry is returned by find

In our MongoDb we are implementing the following document structure: Parent |-- List<Children> |-- ChildField1 |-- ChildField2 ... So we ...
0
votes
1answer
6 views

Xtify xid returns always null in a vodafone smart II registration

I had implemented the sample of Xtify sdk in 3 phones, it works in 2 but there is one that it doesn't work (the XtifySDK.getXidKey() returns always null no matter the number of times the instruction ...
28
votes
5answers
718 views

JavaScript null check

I've come across the following code: function (data) { if (data != null && data !== undefined) { // some code here } } I'm somewhat new to JavaScript, but, from other ...
0
votes
1answer
25 views

MySQL Union always returns one row with NULL's

Given the following query… SELECT DISTINCT * FROM PAS_Post WHERE post_user_id = 21 GROUP BY post_post_id UNION SELECT DISTINCT PAS_Post.* FROM PAS_Follow LEFT JOIN ...
0
votes
1answer
33 views

null values in NHibernate returning list

I'm trying to understand the following behaviour of NHibernate and can't. session.CreateCriteria<Param>() .Add(Restrictions.Eq("GroupId", groupId)) .Add(Restrictions.Eq("ParamId", paramId)) ...
0
votes
2answers
52 views

How do I send a null variable, instead of a blank one to my sql DB?

Whenever someone tries to register using my program, and leaves a non-required textfield blank, my instruction sends a "" (blank) data, instead on a null one, how do I make that the data i'm inserting ...
1
vote
2answers
34 views

Android-Writing to a file results in random characters

Argargarg. I am trying to get information from a user input, then to write it to a system file. I get the input, and I call getBytes on it. It logs to the file something along the lines of "null" and ...
0
votes
4answers
52 views

How to test if Action<…> is null? [closed]

Suppose I have a function that looks like this: public void DoSomething(Action<object> something) { something(getObject()); } If something is null, then this code will raise a ...
3
votes
1answer
120 views

Option type benchmark using F#

I need to use Some/None options in heavy numerical simulations. The following micro benchmark gives me Fast = 485 and Slow = 5890. I do not like nulls and even if I liked them I cannot use null ...
1
vote
3answers
63 views

Ruby test for “\0” null?

I have some odd characters showing up in strings that are breaking a script. From what I can tell by put badstring to console they are "\0\0\0\0". I'd like to test for this so I can ignore them...but ...
0
votes
1answer
16 views

Unable to create JBoss Seam EntityManager

This is so frustrating, here is the error log for the past 3 days. I'm not really sure what to do. Please help me. The source is included below. 2013-05-20 10:52:44,197 ERROR [STDERR] ...
2
votes
2answers
24 views

Uncaught TypeError: Cannot read property 'style' of null [closed]

var n1 = document.getElementById("n1").style["background-color"]; Uncaught TypeError: Cannot read property 'style' of null so I try to change a table cell's background color but I get that. Not ...
0
votes
4answers
64 views

Nullpointer exception Java

I am a beginner in Java and I have a few problems with null. I need help with understanding the following questions. I have answered them correctly, however I do not know the exact reason behind them. ...
1
vote
0answers
15 views

Weird Error: Hit ENTER key in listbox, get NULL error for bound recordset values

Access 2007 ADP/ADE. I have a modal that is bound to a table. The modal has a single listbox control, and two buttons. One executes a subroutine of code that access values from the bound recordset, ...
0
votes
1answer
19 views

NullPointer exception in Spring Dependancy Injection with JSF2

i am using jsf2 and spring for just as DI. when i am making request from page i am getting NullPointer Exception. Means Autowiring is not working. i am getting follwoing error. follwing is my whole ...
0
votes
2answers
30 views

Sql Returning null from second select

I have a query like this select * from Cars where car_id!=(Select car_id from reservation where reservation_date between '2013-05-13' and '2013-05-15') I want to take car_id='' if nothing between ...
0
votes
3answers
85 views

How to avoid returning NULL on error if it has to return something? (in C) [closed]

I've stumbled on articles that says its good programming practice to never return NULL. But for functions that need to return something, what should it return? a value of -1 is not going to cut it ...
0
votes
1answer
60 views

Android java JSON parsing 'null' as output

We have been using this code in our application to fetch data from an online database, but whatever we tried, it keeps saying "null" as an output by album and duration. It could be a very small ...
1
vote
0answers
25 views

Excel formula return that pivot tables will handle like cleared cells? [migrated]

What combination of techniques with cell formulas and pivot table configuration will enable the drill-down into the pivot table to only show rows containing the 'desireable' valued cells, ignoring the ...
0
votes
2answers
28 views

how to get NULL from sqlite in xcode

I want one application that has sqlite DB. in my sqlite DB exist 5 records that any record has 2 column. (Name,ID,key) one of all ID is NULL and I want get this. (ID is INTEGER variable) this is my ...
0
votes
0answers
12 views

snprintf issue when pass a macro

define a macro somewhere #define IDENTIFIER "identifier" passing this macro into snprint() char buf[SIZE] = {0}; if (snprintf(buf, sizeof(buf), "%08X_%08X_%s.zip", i, j, IDENTIFIER) ...
4
votes
2answers
47 views

?? operator didn't trigger System.DBNull type in DataTable DataRow

This is a follow-up question to .Net C# String.Join how to output “null” instead of empty string if element value is null? where the answer suggested to use the ?? operator to define a custom null ...
3
votes
2answers
75 views

.Net C# String.Join how to output “null” instead of empty string if element value is null?

According to the MSDN docs for String.Join "If any element in value is null, an empty string is used instead." The code I have pulls data out of a DataTable rotationValues = ...
0
votes
4answers
76 views

difference between null and empty string [duplicate]

What is difference between null string (String s = null) and empty string (String s = "")? This is what i have: String s1 = ""; //print statement does not print any thing for s1 but s1.length()=0 ...
0
votes
0answers
21 views

HTML.DropDownList Default Value save as NULL and still work on selected values

I have a value in the DB that can be NULL and is causing me problems with Html.DropDownList. The code is stored in the DB, and is currently setting the selected value correctly. <%= ...
1
vote
2answers
23 views

Listbox value not assigned to variable

I am trying to assign a listbox value to a variable, however every time I run the code I get the Invalid use of Null error. Private Sub CmdEnter_Click() Dim RS As dao.Recordset Dim RS2 As ...
3
votes
2answers
53 views

When defining the operator ==, null value returns “call is ambiguous”

I have custom classes Rational, Real, and Complex. In Complex I overload operators that allow me to compare a Complex and a Real, or a Complex and a Rational. It would be easy if I could define an ...
0
votes
3answers
47 views

C++ unable to set NULL pointer to static variable containing object?

Apologies ahead of time, as I am not even sure how to phrase the question, but I was working on a homework assignment (to which the question is unrelated except that I ran into the problem working on ...
0
votes
4answers
48 views

Why is `exception` not visible anywhere?

I have a peace of code that is poorly written, like so: HashMap<String, TceFile> mapPresetLastKdf = new HashMap<String, TceFile>( (HashMap<String, TceFile>) RsessionVars.get( ...
0
votes
1answer
29 views

HttpPostedFileBase always returns null

I am using MVC 4 and I tried for upload file concept. Here is my code: <div class="complianceSubDiv"> <div class="complianceLeftDiv"> @Html.Label("Upload the file") </div> ...

1 2 3 4 5 83