FireDAC.Phys.SQLite.TFDSQLiteFunction.ArgumentsCount

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

property ArgumentsCount: Integer read FArgumentsCount write SetArgumentsCount default 0;

C++

__property int ArgumentsCount = {read=FArgumentsCount, write=SetArgumentsCount, default=0};

Properties

Type Visibility Source Unit Parent
property published
FireDAC.Phys.SQLite.pas
FireDAC.Phys.SQLite.hpp
FireDAC.Phys.SQLite TFDSQLiteFunction

Description

The number of formal arguments the function is waiting for.

Use the ArgumentsCount property to specify the number of arguments that the function will receive. Only the number of arguments is important, not their type.

To create a custom function with a different number of arguments, you need to specify the same FunctionName and a different number of arguments. This registers overloaded functions inside the SQLite engine.

See Also