cancel
Showing results for 
Search instead for 
Did you mean: 

WDJ application integrating with SQL

Former Member
0 Kudos

I need to create a form with 10 check boxes. The user can select multiple check boxes, on clicking the submit button the check box entries should update a table in the SQL database.

How can i achieve the same through a WDJ application.

kindly provide useful documents and sample tutorial for the same.

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member218672
Active Contributor
0 Kudos
junwu
Active Contributor
0 Kudos

create data source in your nw server

write your jdbc code as usual

there is no specific thing you have to do for wdj

amolgupta
Active Contributor
0 Kudos

you may consider using JPA - Java Persistence Architechture.

JPA is nothing but a layer built over JDBC, Java's answer to separate frameworks like Hibernate/Spring. Also, depends on version.... older versions support JDO.

Anyway, if you are confortable with JDBC, use JDBC. nothing wrong with that.