i getting a problem in which data is going through the URL but data is not saving in the database. its not giving any error but not saying either. what to do with this problem. i have no idea.
here in this slide it shows that how i over come the problem. that instead of using java.sql.Date dobb= null;
i initialise dobb as string first: string dobb= request.getParameter("debuet"); so first the value of debuet to dobb and then convert that into string.
and then this string used in date table...... So after this its saving date into to database successfully.
i am using the right function to convert date to string. its not giving any problem or any error. but sending the NULL value again and again could not understand the problem. its getting date from the page date. but its not converting the date.
here is the problem when i was to send data to database through the calender. but it was not converting date into string it was giving the value as NULL.
so then through google i come to know to problem that i was using field name as date, which is reserve word in the access. so i had to change the field name..
When i changed my field name this problem came to end as well.