Data.SqlExpr.TSQLSchemaInfo

From RAD Studio API Documentation
Jump to: navigation, search

Delphi

  TSQLSchemaInfo = record
    FType: TSchemaType;
    ObjectName: string;
    Pattern: string;
    PackageName : string;
  end;

C++

struct DECLSPEC_DRECORD TSQLSchemaInfo
{
public:
    TSchemaType FType;
    System::UnicodeString ObjectName;
    System::UnicodeString Pattern;
    System::UnicodeString PackageName;
};

Properties

Type Visibility Source Unit Parent
record
struct
public
Data.SqlExpr.pas
Data.SqlExpr.hpp
Data.SqlExpr Data.SqlExpr

Description

Record that indicates whether the dataset represents metadata from the server, and, if so, what kind.

TSQLSchemaInfo is used by TCustomSQLDataSet to specify whether the dataset represents metadata from the server, and, if so, what kind. See the members' documentation for further details.

See Also