Google.Cloud.Spanner.Data - Class SpannerProviderFactory (5.0.0-beta03)

public sealed class SpannerProviderFactory : DbProviderFactory

Reference documentation and code samples for the Google.Cloud.Spanner.Data class SpannerProviderFactory.

Represents a set of methods for creating instances of the Spanner data provider's implementation of the data source classes.

Inheritance

object > DbProviderFactory > SpannerProviderFactory

Namespace

Google.Cloud.Spanner.Data

Assembly

Google.Cloud.Spanner.Data.dll

Fields

Instance

public static readonly SpannerProviderFactory Instance

The default SpannerProviderFactory instance. This public static field is required for the providerfactory to work properly.

Field Value
TypeDescription
SpannerProviderFactory

Methods

CreateCommand()

public override DbCommand CreateCommand()

Returns a new instance of the provider's class that implements the DbCommand class.

Returns
TypeDescription
DbCommand

A new instance of DbCommand.

Overrides

CreateConnection()

public override DbConnection CreateConnection()

Returns a new instance of the provider's class that implements the DbConnection class.

Returns
TypeDescription
DbConnection

A new instance of DbConnection.

Overrides

CreateConnectionStringBuilder()

public override DbConnectionStringBuilder CreateConnectionStringBuilder()

Returns a new instance of the provider's class that implements the DbConnectionStringBuilder class.

Returns
TypeDescription
DbConnectionStringBuilder

A new instance of DbConnectionStringBuilder.

Overrides

CreateDataAdapter()

public override DbDataAdapter CreateDataAdapter()

Returns a new instance of the provider's class that implements the DbDataAdapter class.

Returns
TypeDescription
DbDataAdapter

A new instance of DbDataAdapter.

Overrides

CreateParameter()

public override DbParameter CreateParameter()

Returns a new instance of the provider's class that implements the DbParameter class.

Returns
TypeDescription
DbParameter

A new instance of DbParameter.

Overrides