Data.DBXCommon.TDBXValue.GetInt16
[–] Properties | |
---|---|
Type: function | |
Visibility: public | |
Source: Data.DBXCommon.pas Data.DBXCommon.hpp
| |
Unit: Data.DBXCommon | |
Parent: TDBXValue |
Delphi
function GetInt16: SmallInt; overload; virtual;
function GetInt16(defaultValue: Smallint): Smallint; overload; virtual;
C++
virtual short __fastcall GetInt16()/* overload */;
virtual short __fastcall GetInt16(short defaultValue)/* overload */;
Description
Gets the smallInt value for 16-bit integer data types.
Gets the smallInt value for TDBXValue instances with a data type of Int16Type.
This method throws a TDBXError exception if TDBXValue.IsNull is true and defaultValue is not specified. This method gets the defaultValue if it is specified and the TDBXValue is null.