FireDAC.Comp.Script.TFDScriptCommandLookupRes
| [–] Properties | |
|---|---|
| Type: enum | |
| Visibility: public | |
| Source: FireDAC.Comp.Script.pas FireDAC.Comp.Script.hpp
| |
| Unit: FireDAC.Comp.Script | |
| Parent: FireDAC.Comp.Script | |
Delphi
TFDScriptCommandLookupRes = (ucNone, ucPartial, ucShort, ucExact);
C++
enum DECLSPEC_DENUM TFDScriptCommandLookupRes : unsigned int { ucNone, ucPartial, ucShort, ucExact };
Description
Specifies command-text matching.
TFDScriptCommandLookupRes specifies different matches between SQL script commands and a text:
| Name | Description |
|---|---|
| ucNone | The text does not match the command. |
| ucPartial | The text partially matches the SQL script command. |
| ucShort | The text matches a short form of an SQL script command. |
| ucExact | The text matches the full form of an SQL script command. |