IDataConnectorServiceDiscoverSpecifiedStructures Method (Guid, SupportedDataStructures, ICollectionString, Boolean) |
Discovers names and descriptions of the native data structures
and saves them into the application database.
Only structures in structureNamesToDiscover will be discovered.
This method also discovers relationships between tables.
Namespace:
Dundas.BI.Entities.DataConnectors
Assembly:
Dundas.BI.Core (in Dundas.BI.Core.dll) Version: 2.0.0.0 (10.0.0.1002)
Syntaxvoid DiscoverSpecifiedStructures(
Guid dataConnectorId,
SupportedDataStructures types,
ICollection<string> structureNamesToDiscover,
bool deleteUnusedStructures
)
Sub DiscoverSpecifiedStructures (
dataConnectorId As Guid,
types As SupportedDataStructures,
structureNamesToDiscover As ICollection(Of String),
deleteUnusedStructures As Boolean
)
void DiscoverSpecifiedStructures(
Guid dataConnectorId,
SupportedDataStructures types,
ICollection<String^>^ structureNamesToDiscover,
bool deleteUnusedStructures
)
abstract DiscoverSpecifiedStructures :
dataConnectorId : Guid *
types : SupportedDataStructures *
structureNamesToDiscover : ICollection<string> *
deleteUnusedStructures : bool -> unit
Parameters
- dataConnectorId
- Type: SystemGuid
The data connector ID. - types
- Type: Dundas.BI.Data.MetadataSupportedDataStructures
Structure types to discover. - structureNamesToDiscover
- Type: System.Collections.GenericICollectionString
The structure names to discover. - deleteUnusedStructures
- Type: SystemBoolean
If set to , delete unused structures.
Exceptions
Remarks
If the structures already exist (were previously discovered), this method will do the following:
- new structures : add;
- existing structures : update;
- structures no longer there : delete, if deleteUnusedStructures is .
See Also