Interface SnowflakeResultSetSerializable

    • Method Detail

      • getResultSet

        @Deprecated
        ResultSet getResultSet()
                        throws SQLException
        Deprecated.
        Get ResultSet from the ResultSet Serializable object so that the user can access the data.

        This API is used by spark connector from 2.6.0 to 2.8.1. It is deprecated from sc:2.8.2/jdbc:3.12.12 since Sept 2020. It is safe to remove it after Sept 2022.

        Returns:
        a ResultSet which represents for the data wrapped in the object
        Throws:
        SQLException - if an error occurs
      • getResultSet

        @Deprecated
        ResultSet getResultSet​(Properties info)
                        throws SQLException
        Deprecated.
        Get ResultSet from the ResultSet Serializable object so that the user can access the data.

        This API is used by spark connector from 2.6.0 to 2.8.1. It is deprecated from sc:2.8.2/jdbc:3.12.12 since Sept 2020. It is safe to remove it after Sept 2022.

        Parameters:
        info - The proxy server information if proxy is necessary.
        Returns:
        a ResultSet which represents for the data wrapped in the object
        Throws:
        SQLException - if an error occurs
      • getRowCount

        long getRowCount()
                  throws SQLException
        Retrieve total row count included in the ResultSet Serializable object.
        Returns:
        the total row count from metadata
        Throws:
        SQLException - if an error occurs
      • getCompressedDataSizeInBytes

        long getCompressedDataSizeInBytes()
                                   throws SQLException
        Retrieve compressed data size included in the ResultSet Serializable object.
        Returns:
        the total compressed data size in bytes from metadata
        Throws:
        SQLException - if an error occurs
      • getUncompressedDataSizeInBytes

        long getUncompressedDataSizeInBytes()
                                     throws SQLException
        Retrieve uncompressed data size included in the ResultSet Serializable object.
        Returns:
        the total uncompressed data size in bytes from metadata
        Throws:
        SQLException - if an error occurs