Gets the table dimensions
Procedure:
H5TB_GET_TABLE_INFO ( loc_id, table_name, nfields, nrecords )
Signature:
herr_t H5TBget_table_info ( hid_t loc_id, const char *table_name, hsize_t *nfields, hsize_t *nrecords )
subroutine h5tbget_table_info_f(loc_id, dset_name, nfields, nrecords, errcode)
implicit none
integer(HID_T), intent(IN) :: loc_id ! file or group identifier
character(LEN=*), intent(IN) :: dset_name ! name of the dataset
integer(HSIZE_T), intent(INOUT):: nfields ! nfields
integer(HSIZE_T), intent(INOUT):: nrecords ! nrecords
integer :: errcode ! error code
end subroutine h5tbget_table_info_f
Parameters:
hid_t loc_id | IN: Identifier of the file or group to read the table within |
const char *table_name | IN: The name of the dataset to read |
hsize_t *nfields | OUT: The number of fields |
hsize_t *nrecords | OUT: The number of records |
Description:
H5TB_GET_TABLE_INFO retrieves the table dimensions from a dataset named table_name
attached to the object specified by the identifier loc_id
.
Returns:
Returns a non-negative value if successful; otherwise returns a negative value.
Example:
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
Include Bitbucket Server for Confluence: An error occured
Connection to Bitbucket Server could not be established. Verify that you have properly configured the Bitbucket Server application link for your Confluence space and that your Bitbucket Server instance is up and running. Error details: javax.net.ssl.SSLHandshakeException: sun.security.validator.ValidatorException: PKIX path building failed: sun.security.provider.certpath.SunCertPathBuilderException: unable to find valid certification path to requested target
--- Last Modified: January 08, 2020 | 03:37 PM