C Data Type Definition
typedef short SMALLINT;
Usage
This example uses SMALLINT in a UDF definition and C function declaration.
| SQL Function Definition | Equivalent C Function Declaration |
|---|---|
CREATE FUNCTION F1 ( A SMALLINT ) RETURNS SMALLINT ...; |
void f1( SMALLINT *a,
SMALLINT *result,
... )
{ ... }
|