aspose file tools
The moose likes EJB Certification (SCBCD/OCPJBCD) and the fly likes IllegalArgumentExcepton node to traverse can not be null Big Moose Saloon
  Search | Java FAQ | Recent Topics
Register / Login
JavaRanch » Java Forums » Certification » EJB Certification (SCBCD/OCPJBCD)
Reply Bookmark "IllegalArgumentExcepton node to traverse can not be null" Watch "IllegalArgumentExcepton node to traverse can not be null" New topic
Author

IllegalArgumentExcepton node to traverse can not be null

Suraj Ratnaparkhi
Greenhorn

Joined: Apr 18, 2012
Posts: 1

i am getting IllegalArgumentExcepton node to traverse can not be null on following code

public void updateCustomer(int id,String customerName)
{
try
{
int row=getHibernateTemplate().bulkUpdate("update Customer set customerName =" +customerName +"where id =" +id);
if (row == 0)
{
System.out.println("Doesn't updated any row!");
}
else{
System.out.println("Updated Row: " + row);
}

}
catch (DataAccessException e) {
System.out.println("Error While updating values!!");
e.printStackTrace();
}
}
John Jai
Bartender

Joined: May 31, 2011
Posts: 1776
Hi Suraj,

Welcome to the Ranch

What's your question? Please take time to read HowToAskQuestionsOnJavaRanch.
 
I agree. Here's the link: http://zeroturnaround.com/jrebel - it saves me about five hours per week
 
subject: IllegalArgumentExcepton node to traverse can not be null
 
Similar Threads
How to refresh the table ?
How to pass row value to a function
JTable, reloading the table...
DriverManager error
2d Array problem gasprices