Sybase Technical Library - Product Manuals Home
[Search Forms] [Previous Section with Hits] [Next Section with Hits] [Clear Search] Expand Search

Exposed and hidden
structures [Table of Contents] CS_CLIENTMSG structure

Open Client Client-Library/C Reference Manual

[-] Chapter 2 Topics
[-] Client-Library and SQL Structures
[-] CS_BROWSEDESC structure

CS_BROWSEDESC structure

ct_br_column uses a CS_BROWSEDESC structure to return information about a column returned as the result of a browse-mode select. This information is useful when an application needs to construct a language command to update browse-mode tables.

A CS_BROWSEDESC structure is defined as follows:

/*
 ** CS_BROWSEDESC
 ** The Client-Library browse column description
 ** structure.
 */
 typedef struct _cs_browsedesc
 {
     CS_INT      status;
     CS_BOOL     isbrowse;
     CS_CHAR     origname[CS_MAX_NAME];
     CS_INT      orignlen;
     CS_INT      tablenum;
     CS_CHAR     tablename[CS_OBJ_NAME];
     CS_INT      tabnlen;
 } CS_BROWSEDESC;

where:


Exposed and hidden
structures [Table of Contents] CS_CLIENTMSG structure