• Post Reply Bookmark Topic Watch Topic
  • New Topic
programming forums Java Mobile Certification Databases Caching Books Engineering Micro Controllers OS Languages Paradigms IDEs Build Tools Frameworks Application Servers Open Source This Site Careers Other Pie Elite all forums
this forum made possible by our volunteer staff, including ...
Marshals:
  • Campbell Ritchie
  • Jeanne Boyarsky
  • Ron McLeod
  • Paul Clapham
  • Liutauras Vilda
Sheriffs:
  • paul wheaton
  • Rob Spoor
  • Devaka Cooray
Saloon Keepers:
  • Stephan van Hulst
  • Tim Holloway
  • Carey Brown
  • Frits Walraven
  • Tim Moores
Bartenders:
  • Mikalai Zaikin

data in table getting overridden?

 
Greenhorn
Posts: 20
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
I have a calendar program in jsp. The page submits to itself. Am performing 2 insertions in it,
(i) when the user selects a date, they can enter some description of the date and store it in database.
(ii) when the calendar page gets loaded, depending on the user selected year,all the saturdays and sundays of the year, get inserted into database.

The second insertion am able to do, but am having trouble with the first insertion. when i try to insert the data, its not getting inserted. And also,if the users select 2006 then saturdays and sundays of 2006 get in, next time when user selects 2007, only the saturdays and sundays of 2007 are only available in database..
I have used MYSQL as database. Holiday is the table name. Fields are HolidayDate which is primary key and is a date field
Description is varchar field
Weekender is char field
Program name : CalendarPage.jsp

This is the part of code, which is making the insertion of the first part.

Am able to print the list values, but those dates are not getting into database.Is there anything wrong in the query?
Please help??
[ March 30, 2006: Message edited by: Bear Bibeault ]
 
Sheriff
Posts: 67746
173
Mac Mac OS X IntelliJ IDE jQuery TypeScript Java iOS
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Quote
  • Report post to moderator
Moved to the JDBC forum.
 
reply
    Bookmark Topic Watch Topic
  • New Topic