public Task <DataTable> GetSchemaAsync(string collectionName, string[] restrictions, CancellationToken cancellationToken = default) { return(FbSchemaFactory.GetSchemaAsync(_owningConnection, collectionName, restrictions, cancellationToken)); }
public DataTable GetSchema(string collectionName, string[] restrictions) { return(FbSchemaFactory.GetSchema(_owningConnection, collectionName, restrictions)); }
public Task <DataTable> GetSchema(string collectionName, string[] restrictions, AsyncWrappingCommonArgs async) { return(FbSchemaFactory.GetSchema(_owningConnection, collectionName, restrictions, async)); }