Data.DBXDelegate.TDBXDelegateWritableValue.GetInt64

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

function GetInt64: Int64; overload; override;
function GetInt64(defaultValue: Int64): Int64; overload; override;

C++

virtual __int64 __fastcall GetInt64()/* overload */;
virtual __int64 __fastcall GetInt64(__int64 defaultValue)/* overload */;

Properties

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

Description

Gets the 64-bit integer value for 64-bit integer data types.

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

Gets the 64-bit integer value for 64-bit integer data types.

Gets the 64-bit integer value for TDBXValue instances with a data type of TDBXDataTypes.

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