can someone please tell me difference between JDBC ResultSet Scroll Sensitive Type and Result Set Scroll Insensitive Type?
Where we use these usually in projects?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
The type of a ResultSet object determines the level of its functionality in two areas: the ways in which the cursor can be manipulated, and how concurrent changes made to the underlying data source are reflected by the ResultSet object.
TYPE_SCROLL_INSENSITIVE:
TYPE_SCROLL_SENSITIVE:
Refer javase tutorial for more details.