OleDbSchemaGuid.Foreign_Keys Field
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the foreign key columns defined in the catalog by a given user.
public: static initonly Guid Foreign_Keys;
public static readonly Guid Foreign_Keys;
staticval mutable Foreign_Keys : Guid
Public Shared ReadOnly Foreign_Keys As Guid
Field Value
Remarks
Foreign_Keys maps to the OLE DB FOREIGN_KEYS rowset. Unless otherwise specified, restriction columns are returned in the following order.
Restriction column | CLR data type | Description |
---|---|---|
PK_TABLE_CATALOG | string |
Catalog name in which the primary key table is defined. A null value if the provider does not support catalogs. |
PK_TABLE_SCHEMA | string |
Unqualified schema name in which the primary key table is defined. A null value if the provider does not support schemas. |
PK_TABLE_NAME | string |
Primary key table name. |
FK_TABLE_CATALOG | string |
Catalog name in which the foreign key table is defined. A null value if the provider does not support catalogs. |
FK_TABLE_SCHEMA | string |
Unqualified schema name in which the foreign key table is defined. A null value if the provider does not support schemas. |
FK_TABLE_NAME | string |
Foreign key table name. |
Applies to
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.