2 overrides of GetSchema
System.Data.Odbc (1)
System\Data\Odbc\OdbcConnectionHelper.cs (1)
185public override DataTable GetSchema(string collectionName, string?[]? restrictionValues)
System.Data.OleDb (1)
artifacts\obj\System.Data.OleDb\Debug\net10.0\System.Data.OleDb.notsupported.cs (1)
121public override System.Data.DataTable GetSchema(string collectionName, string?[]? restrictionValues) { throw new System.PlatformNotSupportedException(System.SR.PlatformNotSupported_OleDb); }
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 302return Task.FromResult(GetSchema(collectionName, restrictionValues));