19 years ago
Mon Jun 05 2006, 09:59am
Hi Curpion
You can upload your images at this forum. No need to hotlink it to another site.
Please save the code in txt format and upload it in your thread. There is a current bug in the BBCode and we are working on the problem. Please do not post HTML or Java code until we have fixed the bug. Thanks! ;)
OK ... i know what the probnlem is ..... your valkue your trying to write back is the incorrect format.... meaning you might be trying to write back Char and the field id numeric .... just check your settings regarding that ... (i used to make the same mistake with VB untill i realized what the problem was)
Are you sure that your method must be static? Are you throwing the right exception? Have you tried to use a try catch statement?
try
{
the code that can throw an exception
}
catch(the exception e)
{
}
note the there are lots of exceptions i.e. NumberFormatException, IOException, InterruptedException..
this way no other methods using this method will have to throw an exception, and you can determine the right exception the code will throw.