Page tree

 

JAVA

FORTRAN

C++

C

 

Link

H5TB_WRITE_FIELDS_NAME

Overwrites fields

Procedure:

H5TB_WRITE_FIELDS_NAME (loc_id, table_name, field_names, start, nrecords, type_size, field_offset, field_sizes, data )

Signature:

herr_t H5TBwrite_fields_name ( 
                    hid_t loc_id, 
                    const char *table_name, 
                    const char *field_names, 
                    hsize_t start, 
                    hsize_t nrecords, 
                    size_t type_size,
                    const size_t *field_offset, 
                    const size_t *field_sizes, 
                    const void *data
         )

subroutine h5tbwrite_field_name_f(loc_id, dset_name, field_name, start, &
                                  nrecords, type_size, buf, errcode) 

  implicit none
  integer(HID_T), intent(IN) :: loc_id           ! file or group identifier 
  character(LEN=*), intent(IN) :: dset_name      ! name of the dataset 
  character(LEN=*), intent(IN) :: field_name     ! name of the field
  integer(HSIZE_T), intent(IN) :: start          ! start record 
  integer(HSIZE_T), intent(IN) :: nrecords       ! records
  integer(SIZE_T), intent(IN) :: type_size       ! type size
  , intent(IN), dimension(*) :: buf        ! data buffer 
  integer :: errcode                             ! error code

end subroutine h5tbwrite_field_name_f

Parameters:
hid_t loc_idIN: Identifier of the file or group where the table is located
const char *table_nameIN: The name of the dataset to overwrite
const char * field_namesIN: The names of the fields to write
hsize_t startIN: The zero based index record to start writing
hsize_t nrecordsIN: The number of records to write
size_t type_sizeIN: The size of the structure type, as calculated by sizeof()
const size_t *field_offset

IN: An array containing the offsets of the fields. These offsets can be calculated with the HOFFSET macro.

const size_t *field_sizesIN: An array containing the sizes of the fields
void *dataIN: Buffer with data

Description:

H5TB_WRITE_FIELDS_NAME overwrites one or several fields specified by field_names with data in data 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

Please see Tables for Fortran programming hints.

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: November 20, 2019 | 02:01 PM