Java / JDBC
Different types of ResultSet in JDBC.
Based on the cursor scroll behavior, there are 3 types.
ResultSet.TYPE_FORWARD_ONLY, the default type where cursor can only move forward in the result set.
ResultSet.TYPE_SCROLL_INSENSITIVE cursor can move forward and backward, and the resultset is insensitive to changes made by others to the database after the result set was created.
ResultSet.TYPE_SCROLL_SENSITIVE, the cursor can move In both direction, and the result set is sensitive to changes made by others to the database after the result set has been created.
Based on the concurrency there are 2 types of ResultSet object.
ResultSet.CONCUR_READ_ONLY: The result set is read only, this is the default concurrency type.
ResultSet.CONCUR_UPDATABLE: We can use ResultSet update method to update the row data.
Invest now in Acorns!!! 🚀
Join Acorns and get your $5 bonus!
Acorns is a micro-investing app that automatically invests your "spare change" from daily purchases into diversified, expert-built portfolios of ETFs. It is designed for beginners, allowing you to start investing with as little as $5. The service automates saving and investing. Disclosure: I may receive a referral bonus.
Invest now!!! Get Free equity stock (US, UK only)!
Use Robinhood app to invest in stocks. It is safe and secure. Use the Referral link to claim your free stock when you sign up!.
The Robinhood app makes it easy to trade stocks, crypto and more.
Webull! Receive free stock by signing up using the link: Webull signup.
More Related questions...
