package org.kodejava.jdbc;
import java.sql.*;
public class SupportScrollableResultSet {
private static final String URL = "jdbc:mysql://localhost/kodejava";
private static final String USERNAME = "kodejava";
private static final String PASSWORD = "s3cr*t";
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.4.0</version>
</dependency>
Latest posts by Wayan (see all)
- How do I get number of each day for a certain month in Java? - September 8, 2024
- How do I get operating system process information using ProcessHandle? - July 22, 2024
- How do I sum a BigDecimal property of a list of objects using Java Stream API? - July 22, 2024