2 overrides of GetSchema
System.Data.Odbc (1)
System\Data\Odbc\OdbcConnectionHelper.cs (1)
185
public override DataTable
GetSchema
(string collectionName, string?[]? restrictionValues)
System.Data.OleDb (1)
System\Data\ProviderBase\DbConnectionHelper.cs (1)
237
public override DataTable
GetSchema
(string collectionName, string?[]? restrictionValues)
5 references to GetSchema
System.Data.Common (5)
System\Data\Common\DbConnection.cs (5)
208
/// If the connection is associated with a transaction, executing <see cref="
GetSchema
(string, string[])" />
279
/// This is the asynchronous version of <see cref="
GetSchema
(string, string[])" />.
282
/// The default implementation invokes the synchronous <see cref="
GetSchema
(string, string[])" /> call and
285
/// Exceptions thrown by <see cref="
GetSchema
(string, string[])" /> will be communicated via the returned Task
302
return Task.FromResult(
GetSchema
(collectionName, restrictionValues));