protected override DbProviderManifest GetDbProviderManifest(string manifestToken)
 {
     return(InnerProviderServices.GetProviderManifest(manifestToken));
 }
 protected override string GetDbProviderManifestToken(DbConnection connection)
 {
     return(InnerProviderServices.GetProviderManifestToken(((GlimpseProfileDbConnection)connection).InnerConnection));
 }
 protected override void DbDeleteDatabase(DbConnection connection, int?commandTimeout, StoreItemCollection storeItemCollection)
 {
     InnerProviderServices.DeleteDatabase(((GlimpseProfileDbConnection)connection).InnerConnection, commandTimeout, storeItemCollection);
 }
 protected override bool DbDatabaseExists(DbConnection connection, int?commandTimeout, StoreItemCollection storeItemCollection)
 {
     return(InnerProviderServices.DatabaseExists(((GlimpseProfileDbConnection)connection).InnerConnection, commandTimeout, storeItemCollection));
 }
 protected override string DbCreateDatabaseScript(string providerManifestToken, StoreItemCollection storeItemCollection)
 {
     return(InnerProviderServices.CreateDatabaseScript(providerManifestToken, storeItemCollection));
 }
 protected override DbCommandDefinition CreateDbCommandDefinition(DbProviderManifest providerManifest, DbCommandTree commandTree)
 {
     return(new GlimpseProfileDbCommandDefinition(InnerProviderServices.CreateCommandDefinition(commandTree), Stats));
 }
 public override DbCommandDefinition CreateCommandDefinition(DbCommand prototype)
 {
     return(new GlimpseProfileDbCommandDefinition(InnerProviderServices.CreateCommandDefinition(prototype), Stats));
 }