C# Class DataAccessFramework.SqlExpressDataTool

An implementation of the DataTool that uses Sql Server Express to connect to an .mdf file.
Inheritance: MSSqlDataTool
Afficher le fichier Open project: PeteProgrammer/DataAccessFramework

Méthodes publiques

Méthode Description
BeginTransaction ( ) : void
CommitTransaction ( ) : void
RollbackTransaction ( ) : void
SqlExpressDataTool ( string dataFile ) : System

Creates a new SqlExpressDataTool instance.

Méthodes protégées

Méthode Description
Dispose ( bool disposing ) : void

Disposes the current instance, closing the connection.

GetConnection ( ) : IDbConnection

Gets an open SqlConnection

GetTransaction ( ) : IDbTransaction

Gets a SqlTransaction instance if a transaction has been started; otherwise null is returned.

Method Details

BeginTransaction() public méthode

public BeginTransaction ( ) : void
Résultat void

CommitTransaction() public méthode

public CommitTransaction ( ) : void
Résultat void

Dispose() protected méthode

Disposes the current instance, closing the connection.
protected Dispose ( bool disposing ) : void
disposing bool
Résultat void

GetConnection() protected méthode

Gets an open SqlConnection
protected GetConnection ( ) : IDbConnection
Résultat IDbConnection

GetTransaction() protected méthode

Gets a SqlTransaction instance if a transaction has been started; otherwise null is returned.
protected GetTransaction ( ) : IDbTransaction
Résultat IDbTransaction

RollbackTransaction() public méthode

public RollbackTransaction ( ) : void
Résultat void

SqlExpressDataTool() public méthode

Creates a new SqlExpressDataTool instance.
public SqlExpressDataTool ( string dataFile ) : System
dataFile string /// The full path to the .mdf file containing the database. ///
Résultat System