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
  • Tim Cooke
  • Liutauras Vilda
  • Jeanne Boyarsky
  • paul wheaton
Sheriffs:
  • Ron McLeod
  • Devaka Cooray
  • Henry Wong
Saloon Keepers:
  • Tim Holloway
  • Stephan van Hulst
  • Carey Brown
  • Tim Moores
  • Mikalai Zaikin
Bartenders:
  • Frits Walraven

How to store option format value in database in jsp

 
Ranch Hand
Posts: 151
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Hi,
I have one jsp page containing 2o questions retrieved from table along with its possible four-option answer in this manner:
Question1:
Option-a
Option-b
Option-c
Option-d
All the options are in radio button form. I am trying to store the result of these question test in my final output table:
Structure of this table is:


Eventide -> int(2)->data from another event table->getting value in update table
Question id ->int(2) ->data from questionbank table-> getting value in update table

Serialno ->int(3) ->no. from questionbank table
Answer -> varchar(2) -> value of the option selected from below question page>
So structure of final table will be:
Event-id question-id serial-no answer
Same Same 1 a/b/c/d
For all For all 2 a/b/c/d
Question question 3 a/b/c/d



So, How it is possible to store the result of all question with answer equals to one of the four options in the same row of questioned.
Is there required in looping in my insertdata.jsp page.
Here questioned is same for all questions:
Here is fillquestion.jsp page:


And here is an my insertdata.jsp page
I am not sure about the code written in this page, kindly provide update


Thanks and Regards
Harshal

Thanks in advance
 
Bartender
Posts: 2856
10
Firefox Browser Fedora Java
  • Mark post as helpful
  • send pies
    Number of slices to send:
    Optional 'thank-you' note:
  • Report post to moderator
Please do not post the same question multiple times.
 
Slideshow boring ... losing consciousness ... just gonna take a quick nap on this tiny ad ...
Gift giving made easy with the permaculture playing cards
https://coderanch.com/t/777758/Gift-giving-easy-permaculture-playing
    Bookmark Topic Watch Topic
  • New Topic