Answers for "function used to find the column coount of the particular resultset"

0

get column count jdbc

/**
     * Get the column count
     * @return count of column the result set have
     */
    public static int getColumnCount(){

        int columnCount = 0;

        try {
            ResultSetMetaData rsMetaData = rs.getMetaData();
            columnCount = rsMetaData.getColumnCount();
        } catch (SQLException e) {
            System.out.println("ERROW WHILE GETTING COLUMN COUNT " +e.getMessage());
        }
        return columnCount;
    }
Posted by: Guest on November-30-2020

Code answers related to "function used to find the column coount of the particular resultset"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language