Click here to view and discuss this page in DocCommentXchange. In the future, you will be sent there automatically.

SQL Anywhere 11.0.1 (Français) » SQL Anywhere Server - Programming » SQL Anywhere Database Tools Interface » Database tools interface » DBTools structures

 

a_name structure

Holds a linked list of names. This is used by other structures requiring lists of names.

Syntax
typedef struct a_name {
    struct a_name *next;
    char          name[1];
} a_name, * p_name;
Members
Member Description
next Pointer to the next a_name structure in the list.
name The name.
See also