package org.kodejava.jdbc;
import java.sql.*;
public class SupportScrollableResultSet {
private static final String URL = "jdbc:mysql://localhost/kodejava";
private static final String USERNAME = "root";
private static final String PASSWORD = "";
public static void main(String[] args) {
try (Connection connection =
DriverManager.getConnection(URL, USERNAME, PASSWORD)) {
DatabaseMetaData meta = connection.getMetaData();
boolean isForwardOnly = meta.supportsResultSetType(
ResultSet.TYPE_FORWARD_ONLY);
System.out.println("ForwardOnly = " + isForwardOnly);
boolean isScrollInsensitive = meta.supportsResultSetType(
ResultSet.TYPE_SCROLL_INSENSITIVE);
System.out.println("ScrollInsensitive = " + isScrollInsensitive);
boolean isScrollSensitive = meta.supportsResultSetType(
ResultSet.TYPE_SCROLL_SENSITIVE);
System.out.println("ScrollSensitive = " + isScrollSensitive);
} catch (SQLException e) {
e.printStackTrace();
}
}
}
The result of the code snippet above:
ForwardOnly = true
ScrollInsensitive = true
ScrollSensitive = false
Maven dependencies
<dependency>
<groupId>com.mysql</groupId>
<artifactId>mysql-connector-j</artifactId>
<version>8.0.32</version>
</dependency>
Latest posts by Wayan (see all)
- How do I build simple search page using ZK and Spring Boot? - March 8, 2023
- How do I calculate days between two dates excluding weekends and holidays? - January 12, 2023
- How do I discover the quarter of a given date? - January 11, 2023