Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

px_get_data_bytes(3) [debian man page]

PX_GET_DATA_BYTES(3)					     Library Functions Manual					      PX_GET_DATA_BYTES(3)

NAME
PX_get_data_bytes -- Get value from bytes data field SYNOPSIS
#include <paradox.h> int PX_get_data_bytes(pxdoc_t *pxdoc, char *data, int len, char **value) DESCRIPTION
Reads a data field consisting of an array of bytes into a chunk of memory and returns the pointer to it in value. The memory is allocated by this function and must be freed by the calling application. You should use this function instead of accessing the data directly. data points to the start of the data field in the record. It must be calculated by summing up all field length before the field to operate on and add it to the base pointer of the record. Note: This function is deprecated and obsolete if PX_retrieve_record(3) is used. RETURN VALUE
Returns 0 if the value is NULL, -1 in case of an error and 1 otherwise. SEE ALSO
PX_get_data_short(3), PX_get_data_long(3), PX_get_data_double(3), PX_get_data_alpha(3), PX_get_data_byte(3) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PX_GET_DATA_BYTES(3)

Check Out this Related Man Page

PX_GET_DATA_SHORT(3)					     Library Functions Manual					      PX_GET_DATA_SHORT(3)

NAME
PX_get_data_short -- Get value from short data field SYNOPSIS
#include <paradox.h> int PX_get_data_short(pxdoc_t *pxdoc, char *data, int len, short int *value) DESCRIPTION
Converts a data field as it stored in the database file into a short integer for the host architecture. You should use this function instead of accessing the data directly. data points to the start of the data field in the record. It must be calculated by summing up all field length before the field to operate on and add it to the base pointer of the record. Note: This function is deprecated and obsolete if PX_retrieve_record(3) is used. RETURN VALUE
Returns 0 if the value is NULL, -1 in case of an error and 1 otherwise. SEE ALSO
PX_get_data_byte(3), PX_get_data_long(3), PX_get_data_double(3), PX_get_data_alpha(3) AUTHOR
This manual page was written by Uwe Steinmann uwe@steinmann.cx. PX_GET_DATA_SHORT(3)
Man Page

4 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

awk script

Current field length : 361 bytes To the record , i am appending the filename and hard-coding batchid. The record length has increased from 361 to 400 and since i will continue to get both files ie 361 and 400 length sizes i want to write a program that can handle both of them. To the new... (3 Replies)
Discussion started by: zomboo
3 Replies

2. Shell Programming and Scripting

Need help with sed

Hi, I need to convert a fixed length record to a delimited one. Sed is giving me problem when trying with 2 digit field numbers, ir it is failing while extracting 10th field. Can someone plese help me ? Eg: The following is working echo "aaaaaaaaaa bbbbbbbbccccccc dddd... (0 Replies)
Discussion started by: ammu.mathai
0 Replies

3. Shell Programming and Scripting

Need help with sed

Hi, I need to convert a fixed length record to a delimited one. Sed is giving me problem when trying with 2 digit field numbers, ir it is failing while extracting 10th field. Can someone plese help me ? Eg: The following is working echo "aaaaaaaaaa bbbbbbbbccccccc dddd... (3 Replies)
Discussion started by: ammu.mathai
3 Replies

4. UNIX for Dummies Questions & Answers

Formatting a line of data into columns

Hi all, I'm a little stuck with a data file I've been collecting data in. The file contains one field of data running continuously down the file and I can't work out how to format the data into three columns. This is a mock up of the file: Each r# is a random number and varies in length, this... (3 Replies)
Discussion started by: nistleloy
3 Replies