Home | Previous Page | Next Page   DataBlade API Overview > Accessing SQL Data Types > The NULL Constant >

NULL-Valued Pointer

The NULL-valued pointer, as defined in stddef.h, is a DataBlade API constant that represents an initialized pointer. NULL is usually represented as zero (0) for a C pointer. However zero does not always represent NULL. Use the keyword NULL in your DataBlade API code to initialize pointers, as the following line shows:

MI_ROW *row = NULL;

In addition, the DataBlade API uses the NULL-value pointer for the following:

Home | [ Top of Page | Previous Page | Next Page | Contents | Index ]