active questions tagged null - Stack Overflowmost recent 30 from stackoverflow.com2009-11-28T18:52:24Zhttp://stackoverflow.com/feeds/tag/nullhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1653926/visual-studio-dataset-designer-null0Visual Studio Dataset Designer NullDavid M2009-10-31T09:55:10Z2009-11-27T20:36:44Z
<p>Visual Studio 2008 has a bug in that you cannot use the dataset designer to set an int type field to be nullable. (There are error reports going back to Visual Studio 2005 but it seems this has never been addressed.)</p>
<p>The only selectable behaviour is to emit code that raises an exception if an null value is passed back from the database, rather than set the value to null, which would require the data type to be "int?" instead of "int".
A real world example case is when a foreign key is null because the dependent object has not yet be assigned. </p>
<p>Are there any sensible workarounds other than 1, not using Visual Studio datasets, 2. changing the datatype to string (which allows null but negates the point of strong typing and forces numerous casting), or 3. changing the emitted code (which will be overwritten if any changes are made to the dataset via the designer).</p>
http://stackoverflow.com/questions/1810347/nsnull-crashes-my-initwithdictionary0NSNull crashes my initWithDictionaryCanada Dev2009-11-27T19:35:04Z2009-11-27T20:13:03Z
<p>I am parsing a JSON file.</p>
<p>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 crashes my app for those place where I am expecting something but getting null:</p>
<pre><code>- (id)initWithDictionary:(NSDictionary *)boxDictionary {
if ([self init]) {
// ...
int numberOfBoxes = [[boxDictionary valueForKey:@"box_count"] intValue];
int numberOfItemsInBoxes = [[boxDictionary valueForKey:@"box_items_count"] intValue];
// ..
}
return self;
}
</code></pre>
http://stackoverflow.com/questions/1740280/select-all-the-newest-record-distinct-keyword-with-a-non-null-value-in-one-column1SELECT all the newest record distinct keyword with a non null value in one columnWizzard2009-11-16T05:39:57Z2009-11-27T03:49:14Z
<p>Hello again...</p>
<p>Following on from this question
<a href="http://stackoverflow.com/questions/1740199/select-the-newest-record-with-a-non-null-value-in-one-column">http://stackoverflow.com/questions/1740199/select-the-newest-record-with-a-non-null-value-in-one-column</a></p>
<p>I know have a problem where I have this data</p>
<pre><code>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 | 2009-09-07
5 | apple | 100 | 2009-07-01
6 | apple | 98 | 2009-07-05
7 | apple | 500 | 2009-07-30
8 | itunes | NULL | 2009-08-30
9 | itunes | 50 | 2009-09-10
10 | itunes | NULL | 2009-09-15
</code></pre>
<p>And need a query which will fetch out rows
3, 7 and 9
Row which has the newest date and is non-null.</p>
http://stackoverflow.com/questions/1765171/c-null-0x0-or-01C++: NULL 0x0 or 0?moka2009-11-19T17:42:29Z2009-11-26T16:48:08Z
<p>Hey, </p>
<p>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 used instead though. What is the difference?</p>
<p>Thank you!</p>
http://stackoverflow.com/questions/1799321/c-2-0-can-methodbase-getcurrentmethod-return-null1C# 2.0: Can MethodBase.GetCurrentMethod() return null?emptyset2009-11-25T19:15:48Z2009-11-25T19:21:35Z
<p>I'm tracking down a NullReferenceException and <a href="http://msdn.microsoft.com/en-us/library/system.reflection.methodbase.getcurrentmethod.aspx" rel="nofollow">the official documentation</a> is lacking.</p>
<p>This is C# 2.0 code.</p>
http://stackoverflow.com/questions/3881/illegalargumentexception-or-nullpointerexception-for-a-null-parameter23IllegalArgumentException or NullPointerException for a null parameter?Mike Stone2008-08-06T19:26:30Z2009-11-25T14:08:45Z
<p>I have a simple setter method for a Java property and null is not appropriate for this particular property. I have always been torn, in this situation: should I throw an <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/IllegalArgumentException.html" rel="nofollow">IllegalArgumentException</a>, or a <a href="http://java.sun.com/j2se/1.5.0/docs/api/java/lang/NullPointerException.html" rel="nofollow">NullPointerException</a>? From the javadocs, both seem appropriate. Is there some kind of understood standard? Or is this just one of those things that you should do whatever you prefer and both is really correct?</p>
http://stackoverflow.com/questions/1793867/best-way-to-check-if-a-character-array-is-empty1Best way to check if a character array is emptyZPS2009-11-25T00:12:00Z2009-11-25T01:25:28Z
<p>Which is the most reliable way to check if a character array is empty?</p>
<pre><code>char text[50];
if(strlen(text) == 0) {}
</code></pre>
<p>or</p>
<pre><code>if(text[0] == '\0') {}
</code></pre>
<p>or do i need to do </p>
<pre><code> memset(text, 0, sizeof(text));
if(strlen(text) == 0) {}
</code></pre>
<p>Whats the most efficient way to go about this?</p>
http://stackoverflow.com/questions/1792222/sharepoint-windows-workflow-breaks-when-we-deploy-it0SharePoint Windows Workflow breaks when we deploy it78lro2009-11-24T19:03:58Z2009-11-24T21:31:02Z
<p>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 activity and one custom child activity. We use binding on the properties to pass them throughout the workflow, all standard stuff for windows workflow, we think.</p>
<p>When we deploy this workflow to our test server, which is a small farm, our taskproperties/workflowproperties all seem to evaluate to null.</p>
<p>We have tried many, many different ways to solve this, including running the workflow as the admin account, manually recreating the the taskproperties in code etc. etc. without any success.</p>
<p>Can anyone shed any light on what could be the problem, the error is detailed below, all the best,</p>
<p>This error below is an Internal error, and seems to point to a error when a Task is created with a content type (SPWinOETaskService.CreateTaskWithContentType).</p>
<pre><code>11/23/2009 19:09:54.47 w3wp.exe (0x1FB8) 0x1CDC Windows SharePoint Services Workflow Infrastructure 88xr Unexpected WinWF Internal Error, terminating workflow Id# 07ab6631-c656-4918-8ffe-7a09da3a3628
11/23/2009 19:09:54.47 w3wp.exe (0x1FB8) 0x1CDC Windows SharePoint Services Workflow Infrastructure 98d4 Unexpected System.Reflection.TargetInvocationException: Exception has been thrown by the target of an invocation. ---> System.NullReferenceException: Object reference not set to an instance of an object. at Microsoft.SharePoint.Workflow.SPWinOETaskService.CreateTaskWithContentTypeInternal(Guid taskId, SPWorkflowTaskProperties properties, Boolean useDefaultContentType, SPContentTypeId ctid, HybridDictionary specialPermissions) at Microsoft.SharePoint.Workflow.SPWinOETaskService.CreateTaskWithContentType(Guid taskId, SPWorkflowTaskProperties properties, String taskContentTypeId, HybridDictionary specialPermissions) --- End of inner exception stack trace --- at System.RuntimeMethodHandle._InvokeMethodFast(Object target, Object[] arguments, SignatureStruct& sig, MethodAttributes methodAtt...
11/23/2009 19:09:54.47* w3wp.exe (0x1FB8) 0x1CDC Windows SharePoint Services Workflow Infrastructure 98d4 Unexpected ...ributes, RuntimeTypeHandle typeOwner) at System.RuntimeMethodHandle.InvokeMethodFast(Object target, Object[] arguments, Signature sig, MethodAttributes methodAttributes, RuntimeTypeHandle typeOwner) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture, Boolean skipVisibilityChecks) at System.Reflection.RuntimeMethodInfo.Invoke(Object obj, BindingFlags invokeAttr, Binder binder, Object[] parameters, CultureInfo culture) at System.RuntimeType.InvokeMember(String name, BindingFlags bindingFlags, Binder binder, Object target, Object[] providedArgs, ParameterModifier[] modifiers, CultureInfo culture, String[] namedParams) at System.Workflow.Activities.CallExternalMethodActivity.Execute(Acti...
11/23/2009 19:09:54.47* w3wp.exe (0x1FB8) 0x1CDC Windows SharePoint Services Workflow Infrastructure 98d4 Unexpected ...vityExecutionContext executionContext) at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(T activity, ActivityExecutionContext executionContext) at System.Workflow.ComponentModel.ActivityExecutor`1.Execute(Activity activity, ActivityExecutionContext executionContext) at System.Workflow.ComponentModel.ActivityExecutorOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime) at System.Workflow.Runtime.Scheduler.Run()
</code></pre>
http://stackoverflow.com/questions/1788011/transpose-select-results-with-oracle1Transpose select results with Oracle Zsolt Botykai2009-11-24T05:33:13Z2009-11-24T15:21:34Z
<p>Hi All,</p>
<p>my question is, with some background:</p>
<p>I have to generate some sql queries based on the table metadata (column format), and the result is something like:</p>
<pre><code>TABLENAME1|COL1
TABLENAME1|COL2
TABLENAME2|COL1
TABLENAME2|COL2
TABLENAME2|COL3
TABLENAME3|COL1
TABLENAME4|COL1
TABLENAME4|COL2
... /*some other 1800 rows */
</code></pre>
<p>(Yeah, it's ordered.)
What I need is to transpose this data, based on the first column, so the expected output would be:</p>
<pre><code>TABLENAME1|COL1|COL2|NULL
TABLENAME2|COL1|COL2|COL3
TABLENAME3|COL1|NULL|NULL
TABLENAME4|COL1|COL2|NULL
/* less then 1800 rows ;-) */
</code></pre>
<p>Is it possible using Oracle SQL?</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1789657/moq-mocked-method-returns-null1Moq Mocked method returns null?Martin M.2009-11-24T12:07:41Z2009-11-24T12:19:47Z
<p>Hi, I need help with a testmethod im trying to write...</p>
<p>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 methods returns null. What I Dont understand is that i have a similar method named GetEmail, which basically does the same and works.</p>
<p>This is the code for retrieving the profile, which doesnt work:</p>
<pre><code>mockUserRepository.Setup(gp => gp.GetProfileFromUserName(userProfile.UserName)).Returns(new Profile { ProfileID = userProfile.ProfileID });
</code></pre>
<p>And this is the code for retrieving the email, which works.</p>
<pre><code>mockUserRepository.Setup(em => em.GetEmail(new MockIdentity("JohnDoe").Name)).Returns("johndoe@gmail.com");
</code></pre>
<p>And this is a snippet of the method the mock calls and returns null on instead of a profile:</p>
<pre><code>public ActionResult ShowProfile()
{
var profile = _userRepository.GetProfileFromUserName(User.Identity.Name);
</code></pre>
<p>What am i doing wrong? If i replace the userProfile.UserName in the GetProfileFromUserName to It.IsAny();</p>
http://stackoverflow.com/questions/1785426/c-null-coalescing-operator-equivalent-for-c0C# null coalescing operator equivalent for c++varun2009-11-23T19:31:23Z2009-11-23T19:34:59Z
<p>is there a C++ equivalent for C# null coalescing operator? i am doing too many null checks in my code.. so was looking for a way to reduce the amount of null code</p>
http://stackoverflow.com/questions/1782759/php-considers-null-is-equal-to-zero1PHP considers null is equal to zeroSteven2009-11-23T12:08:13Z2009-11-23T12:20:59Z
<p>In php, <code>($myvariable==0)</code>
When $myvariable is zero, the value of the expression is true; when $myvariable is null, the value of this expression is also true. How can I exclude the second case? I mean I want the expression to be true only when $myvariable is zero. Of course I can write </p>
<pre><code>($myvariable!=null && $myvariable==0 )
</code></pre>
<p>but is there other elegant way to do this?</p>
http://stackoverflow.com/questions/1781182/null-pointer-problem0NULL Pointer Problem?nXqd2009-11-23T05:03:22Z2009-11-23T05:24:05Z
<pre><code>void Insert(AVLnode * & root, string X)
{
if ( root == NULL)
{
root = GetNode(X);
}
else if ( root->info > X )
{
Insert(root->left,X);
if ( height(root->left) - height(root->right) == 2 )
if ( X < root->left->info )
RotateRR(root);
else
RotateLR(root);
}
else if ( root->info < X )
{
Insert(root->right,X);
if ( height(root->right) - height(root->left) == 2 )
if ( X > root->right->info )
RotateRR(root);
else
RotateLR(root);
}
root->height = max( height(root->left), height(root->right) )+1;
}
AVLnode* find(AVLnode* root,string X)
{
if (!root) return 0;
if ( root->info == X )
return root;
else if (root->info < X)
find(root->left,X);
else if (root->info > X)
find(root->right,X);
return 0;
}
int main(int argc,char* argv)
{
AVLnode* Dic;
Insert(Dic,"adf");
return 0;
}
</code></pre>
<p>The first time in <code>Insert</code>, <code>root</code> is NULL but when I debug, it skips <code>root == null</code>. What's going on?</p>
http://stackoverflow.com/questions/1780617/ie8-and-jquery-null-pointers0IE8 and jQuery null pointersshearn892009-11-23T00:49:12Z2009-11-23T01:34:08Z
<p>hey guys: I've been building a website with some animated rollovers, where I animate the background image to give a colour fade effect. It works fine in FF3, Safari, chrome, but IE8 throws the "undefined is null or not an object" error.</p>
<p>Full text:</p>
<pre><code>Message: 'undefined' is null or not an object
Line: 22
Char: 16
Code: 0
URI: http://www.philipdukes.co.uk/jquery.bgpos.js
Message: 'undefined' is null or not an object
Line: 22
Char: 16
Code: 0
URI: http://www.philipdukes.co.uk/jquery.bgpos.js
</code></pre>
<p>In my web page header I load jquery 1.3.2, then this bgpos library, found at the link in the error, then <a href="http://www.philipdukes.co.uk/homepage.js" rel="nofollow">my homepage script</a>.</p>
<p>Anytime I rollover the nav buttons, IE8 throws this error...</p>
<p>Any help would be appreciated: I know my code may not be the most stylish out there, so <strong>constructive</strong> criticism on that would also be welcome. I'd like to focus on this error though...</p>
<p>shearn89</p>
http://stackoverflow.com/questions/635751/getting-rid-of-null-empty-string-values-in-a-c-array1getting rid of null/empty string values in a c# array zohair2009-03-11T18:22:08Z2009-11-22T07:26:20Z
<p>Hi,
I have a program where an array gets its data using string.Split(char[] delimiter).
(using ';' as delimiter)
Some of the values, though, are null ie. the string has parts where there is no data so it does something like this:
1 ;2 ; ; 3;
This leads to my array having null values.</p>
<p>How do I get rid of them?
Thanks.</p>
http://stackoverflow.com/questions/1777126/in-java-to-remove-an-element-in-an-array-can-you-set-it-to-null0In java to remove an element in an array can you set it to null? Ben Fossen2009-11-21T23:22:44Z2009-11-22T07:00:20Z
<p>I am trying to make a remove method that works on an array implementation of a list.
Can I set the the duplicate element to null to remove it? Assuming that the list is in order.</p>
<pre><code>ArrayList a = new ArrayList[];
public void removeduplicates(){
for(a[i].equals(a[i+1]){
a[i+1] = null;
}
a[i+1] = a[i];
}
</code></pre>
http://stackoverflow.com/questions/1775642/what-is-the-correct-way-to-read-from-a-datarow-if-the-cell-might-be-null2what is the correct way to read from a datarow if the cell might be nulloo2009-11-21T14:40:18Z2009-11-21T15:31:42Z
<p>I have the following code which seems to blow up if the column in the datarow (dr) is null. what is the correct way to parse out the value from the data row and handle null checks?</p>
<pre><code> Person person = new Person()
{
FirstName = dr["FirstName"].ToString(),
LastName = dr["LastName"].ToString(),
BusinessPhoneNumber = dr["BusinessPhone"].ToString(),
</code></pre>
http://stackoverflow.com/questions/1769648/addition-with-null-values0Addition with NULL valuesIronGoofy2009-11-20T10:39:29Z2009-11-20T17:18:13Z
<p>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 want the result to be NULL when both operands are null. If only one of them is null, I want the result to be the other operand. If both are non-null, I want the result to be "normal" addition.</p>
<p>Here's what I am using so far:</p>
<pre><code>SELECT column INTO anz_old FROM aTable Where <someKeyCondition>;
IF anz_old IS NULL
THEN
anz_new := panzahl;
ELSE
anz_new := anz_new + NVL (panzahl, 0);
END IF;
UPATE aTabel set column = anz_new Where <someKeyCondition>;
</code></pre>
<p>Is there a more elegant way (pereferably completely in SQL, i.e. just in an update statement short of a long CASE-Statement with basically the same logic as the above code)?</p>
http://stackoverflow.com/questions/1771268/crystal-reports-how-do-i-allow-set-to-null-when-prompting-for-values-to-pass-t0Crystal Reports: How do I allow "set to null" when prompting for values to pass to subreports?metronome2009-11-20T15:33:37Z2009-11-20T15:57:07Z
<p>I have created a report which links into subreports. I created parameter fields to feed into the parameters of the subreports using subreport links. </p>
<p>If I do not add a subreport link and therefore the subreport is prompting for the value directly it will allow the set to null option. However if the enter value prompt is being generated from the parameter field I inserted then the set to null option is not displayed.</p>
<p>I have 12 subreports so I can't prompt for the same values 12 times.</p>
<p>I am using Crystal Reports XI designer and not .net</p>
<p>Tanks in advance. </p>
http://stackoverflow.com/questions/1770942/why-it-returns-null-password0why it returns null password???Johanna2009-11-20T14:52:33Z2009-11-20T15:48:31Z
<p>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 name and family of user and I make an object which its type is SystemManagement but when i call getPassword() on my object it will return null!!!??????</p>
<pre><code>public class Generator {
private static String password;
private static Generator instance;
public String nextPassword() {
char[] allowedCharacters = {'a', 'b', 'c', 'd', 'e', 'f', '1', '2', '3', '4', '5','6'};
SecureRandom random = new SecureRandom();
StringBuffer password1 = new StringBuffer();
for (int i = 0; i < password1.length(); i++) {
password1.append(allowedCharacters[random.nextInt(allowedCharacters.length)]);
}
password = password1.toString();
return password;
}
public String currentPassword() {
return password;
}
public static void setPassword(String password) {
Generator.password = password;
}
public static Generator getInstance() {
if (instance == null) {
instance = new Generator();
}
return instance;
}}
public class SystemManagement implements Serializable {
private String name;
private String family;
private String password;
public SystemManagement(){
}
public SystemManagement(String password) {
this.password = Generator.getInstance().nextPassword();
}
public Students addStudent(String name, String family) {
Students student = new Students(name, family);
students.add(student);
return student;
}
public String getPassword() {
return password;
</code></pre>
<p>}
public void setPassword(String password) {
this.password = password;
}</p>
http://stackoverflow.com/questions/1603810/how-to-fix-a-document-body-is-null-error0how to fix a document.body is null-errorAyrton2009-10-21T21:36:10Z2009-11-20T12:10:51Z
<p>Hi,</p>
<p>I'm having a document.body is null error in my javascript because I use:</p>
<pre><code>$(window).width()
</code></pre>
<p>as value to assign to a variable in my</p>
<pre><code> $(document).ready(function(){});
</code></pre>
<p>I would be very grateful to anyone who could help me with this.</p>
<p>Kind regards</p>
<p>edit: sorry if this all was unclear. I have a demo at: <a href="http://www.wpmonk.com/demo/hypowired" rel="nofollow">http://www.wpmonk.com/demo/hypowired</a>
at first the theme will load but then becomes white (because of the error) but when you reload you can see the whole theme because then he knows the value for $(window).width()</p>
<p>I'm using this code to center the layout (not possible with css because the left needs to have a width aswell.)</p>
<pre><code>function positioneerElement(){
$breedte = (document.body.clientWidth - 1124) / 2;
$('#bg_left').css({
'width': $breedte
});
$('.container').css({
'margin-left': $breedte
});
</code></pre>
<p>}</p>
<p>I call function positioneerElement() in the load function.</p>
<p>Sorry if this wasn't clear I though it wasn't necessary to put the demo here for this nor the code.
However I would like to thank the people who are trying to help!</p>
http://stackoverflow.com/questions/1766905/coalesce-with-null1COALESCE with NULLColin Burnett2009-11-19T22:05:55Z2009-11-20T02:20:47Z
<p>I found this snippet of SQL in a view and I am rather puzzled by it's purpose (actual SQL shortened for brevity):</p>
<pre><code>SELECT
COALESCE(b.Foo, NULL) AS Foo
FROM a
LEFT JOIN b ON b.aId=a.Id
</code></pre>
<p>I cannot think of a single reason of the purpose of coalescing with null instead of just doing this:</p>
<pre><code>SELECT
b.Foo AS Foo
FROM a
LEFT JOIN b ON b.aId=a.Id
</code></pre>
<p>Or at the very least don't include the NULL explicitly:</p>
<pre><code>SELECT
COALESCE(b.Foo) AS Foo
FROM a
LEFT JOIN b ON b.aId=a.Id
</code></pre>
<p>I don't know who authored this (so I cannot ask), when it was authored, or for what specific MS SQL Server version it was written for (pre-2008 for sure though).</p>
<p><b>Is there any valid reason to coalesce with NULL instead of just selecting the column directly?</b> I can't help but laugh and write it off as a rookie mistake but it makes me wonder if there is some "fringe case" that I don't know about.</p>
http://stackoverflow.com/questions/1767252/javascript-remove-references-to-my-object-from-external-arrays0Javascript - Remove references to my object from external arraysJeff Meatball Yang2009-11-19T23:13:17Z2009-11-20T00:42:00Z
<p>I have a problem with dereferencing a Javascript object and setting it to NULL.</p>
<p>Here, I have a Folder implementation that supports recursive subdirectory removal. Please see my comments to understand my dilemma.</p>
<pre><code>function Folder(name, DOM_rows) {
this.name = name;
this.files = [].concat(DOM_rows);
this.subdirs = [];
}
Folder.prototype.AddDir(name, DOM_rows) {
this.subdirs.push(new Folder(name, DOM_rows));
}
Folder.prototype.RemoveDir(folder) {
var stack = [folder];
while(stack.length > 0) {
var cur = stack.pop();
// do a post-order depth-first traversal, so dig to the deepest subdir:
if(cur.subdirs.length > 0) {
while(cur.subdirs.length > 0) { stack.push(cur.subdirs.pop()); }
} else {
// arrived at a leaf-level:
cur.files = null;
// now how do I delete cur from it's parent's subdirs array?
// the only way I know how is to keep a "cur.parentDir" reference,
// then find parent.subdirs[ index of cur ] and slice it out.
// How can I do the JS-equivalent of *cur = NULL?
}
}
}
</code></pre>
http://stackoverflow.com/questions/1180832/avoiding-null-pointer-exceptions-in-a-large-c-code-base2Avoiding null pointer exceptions in a large c++ code base mkal2009-07-25T00:54:04Z2009-11-19T15:22:47Z
<p>I have inherited a large c++ code base and I have a task to avoid any null pointer exceptions that can happen in the code base. Are there are static analysis tools available, I am thinking lint, that you have used successfully. </p>
<p>What other things do you look out for?</p>
http://stackoverflow.com/questions/1758409/sql-join-on-null-values2SQL "Join" on null valuesDan2009-11-18T19:22:17Z2009-11-19T00:01:45Z
<p>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 value but it seems ugly</p>
<pre><code>SELECT * FROM T1 JOIN T2 ON nvl(T1.SOMECOL,'f44087d5935dccbda23f71f3e9beb491') =
nvl(T2.SOMECOL,'f44087d5935dccbda23f71f3e9beb491')
</code></pre>
<p>How can I do better? This is on Oracle if it matters, and the context is an application in which a batch of user-uploaded data has to be compared to a batch of existing data to see if any rows match. In retrospect we should have prevented any of the join columns in either data set from containing nulls, but we didn't and now we have to live with it.</p>
<p>Edit: To be clear, I'm not <em>only</em> concerned with nulls. If the columns are not null I want them to match on their actual values.</p>
http://stackoverflow.com/questions/1759951/non-null-foreign-keys-as-database-standard2Non-Null Foreign Keys as Database StandardTravis2009-11-18T23:50:12Z2009-11-19T00:01:38Z
<p>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) option so that you can see a report where that parameter is null. Basically, table A is a table nullably referencing table B; since the report uses table B to populate the drop-down, there are no nulls to show as an option, and thus you can't select all the the A's that have a null B.</p>
<p>My real question comes from the potential knee-jerk reaction to the above problem by a management type to whom I'm answering. When I explained what was going on, she issued a new mandate that all foreign keys must be non-null and that every entity should have a "default" record inserted, a new standard seemingly to solve this problem in the reporting tool. Basically, if you have a Cat table, then Cat.Owner should never be null, but should instead reference a default record in the Person table, the "default" Person.</p>
<p>While this may help the SSRS problem, it may hurt development/maintenance of services and applications using the database, since they'd now not only have to account for nulls (which were allowed to this point) but also have look for and properly use the "default" record. I thought about trying to talk her off the mandate, but I'd like to glean some information from the experienced before I decide to do that. </p>
<p>Can somebody weigh in on what this may help or hurt? </p>
<p>Anyone had this as a database standard? Any issues, development or otherwise, I should be mindfull of?</p>
http://stackoverflow.com/questions/449409/does-assigning-objects-to-null-in-java-impact-garbage-collection10Does assigning objects to null in Java impact garbage collection?James McMahon2009-01-16T03:30:02Z2009-11-18T18:33:09Z
<p>Does assigning an unused object to null in Java improve the garbage collection process in any measurable way?</p>
<p>My experience with Java (and C#) has taught me that is often counter intuitive to try and outsmart the virtual machine or JIT, but I've seen co-workers use this method and I am curious if this is a good practice to pick up or one of those voodoo programming superstitions?</p>
http://stackoverflow.com/questions/772261/the-or-operator-in-linq-with-c3The || (or) Operator in Linq with C#Ev2009-04-21T12:10:36Z2009-11-18T10:11:06Z
<p>Hi,</p>
<p>I'm using linq to filter a selection of MessageItems. The method I've written accepts a bunch of parameters that might be null. If they are null, the critea for the file should be ignored. If it is not null, use it to filter the results.</p>
<p>It's my understanding that when doing an || operation is C#, if the first expression is true, the second expression should not be evaluated.</p>
<p>Eg.</p>
<pre><code>if(ExpressionOne() || ExpressionTwo())
{
// only ExpressionOne was evaluated because it was true
}
</code></pre>
<p>now, in linq, I'm trying this:</p>
<pre><code>var messages = (from msg in dc.MessageItems
where String.IsNullOrEmpty(fromname) || (!String.IsNullOrEmpty(fromname) && msg.FromName.ToLower().Contains(fromname.ToLower()))
select msg);
</code></pre>
<p>I would have thought this would be sound, because String.IsNullOrEmpty(fromname) woudl equal true and the second part of the || wouldn't get run.</p>
<p>However it does get run, and the second part</p>
<pre><code>msg.FromName.ToLower().Contains(fromname.ToLower()))
</code></pre>
<p>throws a null reference expection (because fromname is null)!! - I get a classic "Object reference not set to an instance of an object" exception.</p>
<p>Any help?!!?</p>
<p>Need more info? Just ask!</p>
<p>Thanks in advance!</p>
http://stackoverflow.com/questions/1679130/jsp-portlet-not-submitting-form-values0JSP Portlet not submitting form valuesvenu2009-11-05T08:33:58Z2009-11-18T09:17:52Z
<p>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 am able to see the form in view mode.
But when i submit the form, the action is coming to processAction() of the Portlet class but the username & password request parameters are getting as null.</p>
<p>Any ideas?</p>
http://stackoverflow.com/questions/1749687/stringutils-defaultstring-euphemism-for-collections1StringUtils.defaultString euphemism for collections? pimlottc2009-11-17T15:33:56Z2009-11-17T18:47:25Z
<p>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 were an empty list?</p>
<p>e.g. to replace</p>
<pre><code>if (list != null) {
for (String item: list) {
// ...
}
}
</code></pre>
<p>with something like</p>
<pre><code>for (String item: ListUtils.defaultList(list)) {
// ...
}
</code></pre>
<p>Using the ternary operator is pretty ugly and cause unchecked casting errors:</p>
<pre><code>List<String> safelista = (List<String>) (list != null ? list : Collections.emptyList());
List<String> safelistb = (list != null ? list : Collections.EMPTY_LIST);
</code></pre>
<p>Putting it inline is even uglier.</p>