IDatabaseExtractorExtractContent Method |
Extracts database level metadata and table information.
Namespace: OpenDiscoverSDK.Interfaces.ExtractorsAssembly: OpenDiscoverSDK.Interfaces (in OpenDiscoverSDK.Interfaces.dll) Version: 2025.4.4.0 (2025.4.4)
SyntaxDatabaseContent ExtractContent(
string databaseFilePath = null,
string password = null
)
Parameters
- databaseFilePath String (Optional)
-
Optional database file path. If known the user should pass in this database's full file path. Although not necessary for supported Microsoft Access database files,
current and future database file formats may need to be opened again internally via special API calls related to the database file format.
- password String (Optional)
-
Optional password (default is null). Check the returned Result value, if WrongPassword is
the value then this archive requires a decryption password. User can make subsequent calls to this method using a password until Ok
is returned or there are no more passwords to try.
Return Value
DatabaseContent
A
DatabaseContent object. If
Result value is
WrongPassword then this archive
requires a decryption password. User can make subsequent calls to this method using a password until
Ok is returned or there are no
more passwords to try.
See Also