Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Scrollable ResultSet

Status
Not open for further replies.

crguy

Programmer
May 24, 2001
34
0
0
CA
Hi,

Here is a part of my code:

Statement myStatement = conn.createStatement(
ResultSet.TYPE_SCROLL_SENSITIVE,
ResultSet.CONCUR_UPDATABLE)

ResultSet customerResultSet = myStatment.exceuteQuery(
SELECT ID, NAME FROM EMP WHERE ID = 2 );

Do I need to create a separate class that will do the update for me (i.e. update emp etc....) or will the ResultSet.CONCUR_UPDATABLE handle this for me?

Thanks
VC
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top