get Boolean from Database - Java JDBC

Java examples for JDBC:ResultSet

Description

get Boolean from Database

Demo Code


import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Timestamp;

public class Main{
    public static boolean getBoolean(String row, String table, int id,
            Connection... con) {// w w w  .j  a v a2  s  . c om
        String query = "SELECT " + row + " FROM " + table + " WHERE id = ?";

        try {
            Connection connection = con.length > 0 ? con[0] : MySqlManager
                    .getConnection();

            try (PreparedStatement stmt = connection
                    .prepareStatement(query)) {
                stmt.setInt(1, id);
                try (ResultSet rs = stmt.executeQuery()) {
                    return rs.next() && rs.getBoolean(row);
                }
            } finally {
                if (con.length <= 0) {
                    connection.close();
                }
            }
        } catch (SQLException e) {
            return false;
        }
    }
    public static void setInt(String row, int value, String table, int id,
            Connection... con) {
        String query = "UPDATE " + table + " SET " + row
                + " = ? WHERE id = ?";

        try {
            Connection connection = con.length > 0 ? con[0] : MySqlManager
                    .getConnection();

            try (PreparedStatement stmt = connection
                    .prepareStatement(query)) {
                stmt.setInt(1, value);
                stmt.setInt(2, id);

                stmt.executeUpdate();
            } finally {
                if (con.length <= 0) {
                    connection.close();
                }
            }
        } catch (SQLException ignored) {
        }
    }
}

Related Tutorials