Data.DBXDelegate.TDBXDelegateWritableValue.GetInt16

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetInt16: SmallInt; overload; override;
function GetInt16(defaultValue: SmallInt): SmallInt; overload; override;

C++

virtual short __fastcall GetInt16()/* overload */;
virtual short __fastcall GetInt16(short defaultValue)/* overload */;

Properties

Type Visibility Source Unit Parent
function public
Data.DBXDelegate.pas
Data.DBXDelegate.hpp
Data.DBXDelegate TDBXDelegateWritableValue

Description

Gets the smallInt value for 16-bit integer data types.

Data.DBXDelegate.TDBXDelegateWritableValue.GetInt16 inherits from Data.DBXCommon.TDBXValue.GetInt16. All content below this line refers to Data.DBXCommon.TDBXValue.GetInt16.

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.

See Also