2 overrides of GetSchema
System.Data.Odbc (1)
System\Data\Odbc\OdbcConnectionHelper.cs (1)
180public override DataTable GetSchema(string collectionName)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net9.0\System.Data.OleDb.notsupported.cs (1)
120public override System.Data.DataTable GetSchema(string collectionName) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
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));