Integer types

Open Server supports three integer types, CS_TINYINT, CS_SMALLINT, and CS_INT.

On most platforms, CS_TINYINT is a 1-byte integer; CS_SMALLINT is a 2-byte integer, and CS_INT is a 4-byte integer:

typedef unsigned char        CS_TINYINT;  
 typedef short                CS_SMALLINT; 
 typedef long                 CS_INT;      
 Real, Float, Numeric, and Decimal Types