2 overrides of GetSchema
System.Data.Odbc (1)
System\Data\Odbc\OdbcConnectionHelper.cs (1)
180public override DataTable GetSchema(string collectionName)
System.Data.OleDb (1)
System\Data\ProviderBase\DbConnectionHelper.cs (1)
232public override DataTable GetSchema(string collectionName)
6 references to GetSchema
System.Data.Common (6)
System\Data\Common\DBCommandBuilder.cs (1)
591DataTable dataTable = connection.GetSchema(DbMetaDataCollectionNames.DataSourceInformation);
System\Data\Common\DbConnection.cs (5)
174/// If the connection is associated with a transaction, executing <see cref="GetSchema(string)" /> calls may cause 247/// This is the asynchronous version of <see cref="GetSchema(string)" />. 250/// The default implementation invokes the synchronous <see cref="GetSchema(string)" /> call and returns a 253/// Exceptions thrown by <see cref="GetSchema(string)" /> will be communicated via the returned Task Exception 270return Task.FromResult(GetSchema(collectionName));