[Prev] [Next] [Top] [Bottom] [Contents] (178 out of 193)

SgeSetColDetail

Sets a column binding detail information for an allocated data structure which is used to execute a Stored Procedure or DSQL Object. This function is used in generating Sapphire/Web code and probably will not be used by application programmers. It is documented here so that you can understand Sapphire/Web-generated code.

Synopsis

#include "WorkingDialog.h"

void SgeSetColDetail(pSgeWorkCallData p, int type_id, int compute_id, int assoc_col, int format_code, char* typename, char* column_name);

Arguments

p
An allocated pSgeWorkCallData structure.
type_id
The data type id of the column.
compute_id
Id number of a compute column. Not yet implemented.
assoc_col
Column the compute_id is associated with. Not yet implemented.
format_code
Id of the format to convert column to. Not yet implemented.
typename
Name of the column's data type
column_name
Name of the column.

Return Values

None.

Description

SgeSetColDetail sets a column binding detail information for an allocated pSgeWorkCallData structure. If p is NULL, no action is taken. This should be called once for each of the respective SgeSetColBind function calls.

Example

pSgeWorkCallData pSgeWCD;
....
SgeSetColDetail(pSgeWCD, 47, 0, 0, 0, "char", "pub_id");

See Also


[Prev] [Next] [Top] [Bottom] [Contents] (178 out of 193)