C# Class Zetbox.Server.SchemaManagement.LoggingSchemaProviderAdapter

Inheritance: ISchemaProvider
Afficher le fichier Open project: daszat/zetbox

Méthodes publiques

Méthode Description
AlterColumn ( TableRef tblName, string colName, DbType type, int size, int scale, bool isNullable ) : void
BeginTransaction ( ) : void
CheckCheckConstraintExists ( TableRef tblName, string constraintName ) : bool
CheckCheckConstraintPossible ( TableRef tblName, string colName, string newConstraintName, Dictionary checkExpressions ) : bool
CheckColumnContainsNulls ( TableRef tblName, string colName ) : bool
CheckColumnContainsValues ( TableRef tblName, string colName ) : bool
CheckColumnExists ( TableRef tblName, string colName ) : bool
CheckDatabaseExists ( string dbName ) : bool
CheckFKColumnContainsUniqueValues ( TableRef tblName, string colName ) : bool
CheckFKConstraintExists ( TableRef tblName, string fkName ) : bool
CheckFunctionExists ( ProcRef funcName ) : bool
CheckIndexExists ( TableRef tblName, string idxName ) : bool
CheckIndexPossible ( TableRef tblName, string idxName, bool unique, bool clustered ) : bool
CheckPositionColumnValidity ( TableRef tblName, string fkName, string positionColumnName ) : bool
CheckProcedureExists ( ProcRef procName ) : bool
CheckSchemaExists ( string schemaName ) : bool
CheckTableContainsData ( TableRef tblName ) : bool
CheckTableContainsData ( TableRef tblName, IEnumerable discriminatorFilter ) : bool
CheckTableExists ( TableRef tblName ) : bool
CheckTriggerExists ( TriggerRef triggerName ) : bool
CheckViewExists ( TableRef viewName ) : bool
CommitTransaction ( ) : void
CopyColumnData ( TableRef srcTblName, string srcColName, TableRef tblName, string colName ) : void
CopyColumnData ( TableRef srcTblName, string srcColName, TableRef tblName, string colName, string discriminatorValue ) : void
CopyFKs ( TableRef srcTblName, string srcColName, TableRef destTblName, string destColName, string srcFKColName ) : void
CountRows ( TableRef tblName ) : long
CreateCheckConstraint ( TableRef tblName, string colName, string newConstraintName, Dictionary checkExpressions ) : void
CreateColumn ( TableRef tblName, string colName, DbType type, int size, int scale, bool isNullable ) : void
CreateContinuousSequenceNumberProcedure ( ) : void
CreateDatabase ( string dbName ) : void
CreateEmptyRightsViewUnmaterialized ( TableRef viewName ) : void
CreateFKConstraint ( TableRef tblName, TableRef refTblName, string colName, string constraintName, bool onDeleteCascade ) : void
CreateIndex ( TableRef tblName, string idxName, bool unique, bool clustered ) : void
CreatePositionColumnValidCheckProcedures ( string>.ILookup refSpecs ) : void
CreateRefreshAllRightsProcedure ( List refreshProcNames ) : void
CreateRefreshRightsOnProcedure ( ProcRef procName, TableRef viewUnmaterializedName, TableRef tblName, TableRef tblNameRights ) : void
CreateRightsViewUnmaterialized ( TableRef viewName, TableRef tblName, TableRef tblNameRights, IList acls ) : void
CreateSchema ( string schemaName ) : void
CreateSequenceNumberProcedure ( ) : void
CreateTable ( TableRef tblName, IEnumerable cols ) : void
CreateTable ( TableRef tblName, bool idAsIdentityColumn ) : void
CreateTable ( TableRef tblName, bool idAsIdentityColumn, bool createPrimaryKey ) : void
CreateUpdateRightsTrigger ( TriggerRef triggerName, TableRef tblName, List tblList, List dependingCols ) : void
DbTypeToNative ( DbType type ) : string
DblinkConnect ( TableRef tblName ) : void
Dispose ( ) : void
DropAllObjects ( ) : void
DropCheckConstraint ( TableRef tblName, string constraintName ) : void
DropColumn ( TableRef tblName, string colName ) : void
DropDatabase ( string dbName ) : void
DropFKConstraint ( TableRef tblName, string constraintName ) : void
DropFunction ( ProcRef funcName ) : void
DropIndex ( TableRef tblName, string idxName ) : void
DropProcedure ( ProcRef procName ) : void
DropSchema ( string schemaName, bool force ) : void
DropTable ( TableRef tblName ) : void
DropTrigger ( TriggerRef triggerName ) : void
DropView ( TableRef viewName ) : void
EnsureInfrastructure ( ) : void
ExecRefreshAllRightsProcedure ( ) : void
ExecRefreshRightsOnProcedure ( ProcRef procName ) : void
ExecuteSqlResource ( Type type, string scriptResourceNameFormat ) : void
GetColumnMaxLength ( TableRef tblName, string colName ) : int
GetFKConstraintNames ( ) : IEnumerable
GetFunctionName ( string schemaName, string funcName ) : ProcRef
GetFunctionNames ( ) : IEnumerable
GetHasColumnDefaultValue ( TableRef tblName, string colName ) : bool
GetIsColumnNullable ( TableRef tblName, string colName ) : bool
GetProcedureDefinition ( ProcRef proc ) : string
GetProcedureName ( string schemaName, string procName ) : ProcRef
GetProcedureNames ( ) : IEnumerable
GetSafeConnectionString ( ) : string
GetSafeConnectionString ( string connectionString ) : string
GetSavedSchema ( ) : string
GetSchemaNames ( ) : IEnumerable
GetTableColumnNames ( TableRef tblName ) : IEnumerable
GetTableColumns ( TableRef tblName ) : IEnumerable
GetTableName ( string schemaName, string tblName ) : TableRef
GetTableNames ( ) : IEnumerable
GetTriggerNames ( ) : IEnumerable
GetViewDefinition ( TableRef view ) : string
GetViewNames ( ) : IEnumerable
InsertFKs ( TableRef srcTblName, string srcColName, TableRef tblName, string colName, string fkColName ) : void
LoggingSchemaProviderAdapter ( ISchemaProvider provider ) : System
MapColumnData ( TableRef srcTblName, string srcColNames, TableRef tblName, string colNames, object>.Dictionary mappings ) : void
MigrateFKs ( TableRef srcTblName, string srcColName, TableRef tblName, string colName ) : void
NativeToDbType ( string type ) : DbType
Open ( string connectionString ) : void
QuoteIdentifier ( string name ) : string
ReadJoin ( TableRef tblName, IEnumerable colNames, IEnumerable joins ) : IDataReader
ReadTableData ( TableRef tblName, IEnumerable colNames ) : IDataReader
ReadTableData ( string sql ) : IDataReader
RefreshDbStats ( ) : void
RenameColumn ( TableRef tblName, string oldColName, string newColName ) : void
RenameDiscriminatorValue ( TableRef tblName, string oldValue, string newValue ) : void
RenameFKConstraint ( TableRef tblName, string oldConstraintName, TableRef refTblName, string colName, string newConstraintName, bool onDeleteCascade ) : void
RenameIndex ( TableRef tblName, string oldIdxName, string newIdxName ) : void
RenameTable ( TableRef oldTblName, TableRef newTblName ) : void
RepairPositionColumn ( TableRef tblName, string positionColumnName ) : bool
RollbackTransaction ( ) : void
SaveSchema ( string schema ) : void
TruncateTable ( TableRef tblName ) : void
WriteDefaultValue ( TableRef tblName, string colName, object value ) : void
WriteDefaultValue ( TableRef tblName, string colName, object value, IEnumerable discriminatorFilter ) : void
WriteGuidDefaultValue ( TableRef tblName, string colName ) : void
WriteGuidDefaultValue ( TableRef tblName, string colName, IEnumerable discriminatorFilter ) : void
WriteTableData ( TableRef destTbl, IDataReader source, IEnumerable colNames ) : void
WriteTableData ( TableRef destTbl, IEnumerable colNames, IEnumerable values ) : void

Private Methods

Méthode Description
LogExistance ( string type, DboRef dboName, bool result, string spec = "" ) : void
LogExistance ( string type, string name, bool result, string spec = "" ) : void
LogNameFetcher ( string type, IEnumerable result ) : void
LogNameFetcher ( string type, IEnumerable result ) : void
LogNameFetcher ( string type, IEnumerable result ) : void

Method Details

AlterColumn() public méthode

public AlterColumn ( TableRef tblName, string colName, DbType type, int size, int scale, bool isNullable ) : void
tblName TableRef
colName string
type DbType
size int
scale int
isNullable bool
Résultat void

BeginTransaction() public méthode

public BeginTransaction ( ) : void
Résultat void

CheckCheckConstraintExists() public méthode

public CheckCheckConstraintExists ( TableRef tblName, string constraintName ) : bool
tblName TableRef
constraintName string
Résultat bool

CheckCheckConstraintPossible() public méthode

public CheckCheckConstraintPossible ( TableRef tblName, string colName, string newConstraintName, Dictionary checkExpressions ) : bool
tblName TableRef
colName string
newConstraintName string
checkExpressions Dictionary
Résultat bool

CheckColumnContainsNulls() public méthode

public CheckColumnContainsNulls ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
Résultat bool

CheckColumnContainsValues() public méthode

public CheckColumnContainsValues ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
Résultat bool

CheckColumnExists() public méthode

public CheckColumnExists ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
Résultat bool

CheckDatabaseExists() public méthode

public CheckDatabaseExists ( string dbName ) : bool
dbName string
Résultat bool

CheckFKColumnContainsUniqueValues() public méthode

public CheckFKColumnContainsUniqueValues ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
Résultat bool

CheckFKConstraintExists() public méthode

public CheckFKConstraintExists ( TableRef tblName, string fkName ) : bool
tblName TableRef
fkName string
Résultat bool

CheckFunctionExists() public méthode

public CheckFunctionExists ( ProcRef funcName ) : bool
funcName ProcRef
Résultat bool

CheckIndexExists() public méthode

public CheckIndexExists ( TableRef tblName, string idxName ) : bool
tblName TableRef
idxName string
Résultat bool

CheckIndexPossible() public méthode

public CheckIndexPossible ( TableRef tblName, string idxName, bool unique, bool clustered ) : bool
tblName TableRef
idxName string
unique bool
clustered bool
Résultat bool

CheckPositionColumnValidity() public méthode

public CheckPositionColumnValidity ( TableRef tblName, string fkName, string positionColumnName ) : bool
tblName TableRef
fkName string
positionColumnName string
Résultat bool

CheckProcedureExists() public méthode

public CheckProcedureExists ( ProcRef procName ) : bool
procName ProcRef
Résultat bool

CheckSchemaExists() public méthode

public CheckSchemaExists ( string schemaName ) : bool
schemaName string
Résultat bool

CheckTableContainsData() public méthode

public CheckTableContainsData ( TableRef tblName ) : bool
tblName TableRef
Résultat bool

CheckTableContainsData() public méthode

public CheckTableContainsData ( TableRef tblName, IEnumerable discriminatorFilter ) : bool
tblName TableRef
discriminatorFilter IEnumerable
Résultat bool

CheckTableExists() public méthode

public CheckTableExists ( TableRef tblName ) : bool
tblName TableRef
Résultat bool

CheckTriggerExists() public méthode

public CheckTriggerExists ( TriggerRef triggerName ) : bool
triggerName TriggerRef
Résultat bool

CheckViewExists() public méthode

public CheckViewExists ( TableRef viewName ) : bool
viewName TableRef
Résultat bool

CommitTransaction() public méthode

public CommitTransaction ( ) : void
Résultat void

CopyColumnData() public méthode

public CopyColumnData ( TableRef srcTblName, string srcColName, TableRef tblName, string colName ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
Résultat void

CopyColumnData() public méthode

public CopyColumnData ( TableRef srcTblName, string srcColName, TableRef tblName, string colName, string discriminatorValue ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
discriminatorValue string
Résultat void

CopyFKs() public méthode

public CopyFKs ( TableRef srcTblName, string srcColName, TableRef destTblName, string destColName, string srcFKColName ) : void
srcTblName TableRef
srcColName string
destTblName TableRef
destColName string
srcFKColName string
Résultat void

CountRows() public méthode

public CountRows ( TableRef tblName ) : long
tblName TableRef
Résultat long

CreateCheckConstraint() public méthode

public CreateCheckConstraint ( TableRef tblName, string colName, string newConstraintName, Dictionary checkExpressions ) : void
tblName TableRef
colName string
newConstraintName string
checkExpressions Dictionary
Résultat void

CreateColumn() public méthode

public CreateColumn ( TableRef tblName, string colName, DbType type, int size, int scale, bool isNullable ) : void
tblName TableRef
colName string
type DbType
size int
scale int
isNullable bool
Résultat void

CreateContinuousSequenceNumberProcedure() public méthode

public CreateContinuousSequenceNumberProcedure ( ) : void
Résultat void

CreateDatabase() public méthode

public CreateDatabase ( string dbName ) : void
dbName string
Résultat void

CreateEmptyRightsViewUnmaterialized() public méthode

public CreateEmptyRightsViewUnmaterialized ( TableRef viewName ) : void
viewName TableRef
Résultat void

CreateFKConstraint() public méthode

public CreateFKConstraint ( TableRef tblName, TableRef refTblName, string colName, string constraintName, bool onDeleteCascade ) : void
tblName TableRef
refTblName TableRef
colName string
constraintName string
onDeleteCascade bool
Résultat void

CreateIndex() public méthode

public CreateIndex ( TableRef tblName, string idxName, bool unique, bool clustered ) : void
tblName TableRef
idxName string
unique bool
clustered bool
Résultat void

CreatePositionColumnValidCheckProcedures() public méthode

public CreatePositionColumnValidCheckProcedures ( string>.ILookup refSpecs ) : void
refSpecs string>.ILookup
Résultat void

CreateRefreshAllRightsProcedure() public méthode

public CreateRefreshAllRightsProcedure ( List refreshProcNames ) : void
refreshProcNames List
Résultat void

CreateRefreshRightsOnProcedure() public méthode

public CreateRefreshRightsOnProcedure ( ProcRef procName, TableRef viewUnmaterializedName, TableRef tblName, TableRef tblNameRights ) : void
procName ProcRef
viewUnmaterializedName TableRef
tblName TableRef
tblNameRights TableRef
Résultat void

CreateRightsViewUnmaterialized() public méthode

public CreateRightsViewUnmaterialized ( TableRef viewName, TableRef tblName, TableRef tblNameRights, IList acls ) : void
viewName TableRef
tblName TableRef
tblNameRights TableRef
acls IList
Résultat void

CreateSchema() public méthode

public CreateSchema ( string schemaName ) : void
schemaName string
Résultat void

CreateSequenceNumberProcedure() public méthode

public CreateSequenceNumberProcedure ( ) : void
Résultat void

CreateTable() public méthode

public CreateTable ( TableRef tblName, IEnumerable cols ) : void
tblName TableRef
cols IEnumerable
Résultat void

CreateTable() public méthode

public CreateTable ( TableRef tblName, bool idAsIdentityColumn ) : void
tblName TableRef
idAsIdentityColumn bool
Résultat void

CreateTable() public méthode

public CreateTable ( TableRef tblName, bool idAsIdentityColumn, bool createPrimaryKey ) : void
tblName TableRef
idAsIdentityColumn bool
createPrimaryKey bool
Résultat void

CreateUpdateRightsTrigger() public méthode

public CreateUpdateRightsTrigger ( TriggerRef triggerName, TableRef tblName, List tblList, List dependingCols ) : void
triggerName TriggerRef
tblName TableRef
tblList List
dependingCols List
Résultat void

DbTypeToNative() public méthode

public DbTypeToNative ( DbType type ) : string
type DbType
Résultat string

DblinkConnect() public méthode

public DblinkConnect ( TableRef tblName ) : void
tblName TableRef
Résultat void

Dispose() public méthode

public Dispose ( ) : void
Résultat void

DropAllObjects() public méthode

public DropAllObjects ( ) : void
Résultat void

DropCheckConstraint() public méthode

public DropCheckConstraint ( TableRef tblName, string constraintName ) : void
tblName TableRef
constraintName string
Résultat void

DropColumn() public méthode

public DropColumn ( TableRef tblName, string colName ) : void
tblName TableRef
colName string
Résultat void

DropDatabase() public méthode

public DropDatabase ( string dbName ) : void
dbName string
Résultat void

DropFKConstraint() public méthode

public DropFKConstraint ( TableRef tblName, string constraintName ) : void
tblName TableRef
constraintName string
Résultat void

DropFunction() public méthode

public DropFunction ( ProcRef funcName ) : void
funcName ProcRef
Résultat void

DropIndex() public méthode

public DropIndex ( TableRef tblName, string idxName ) : void
tblName TableRef
idxName string
Résultat void

DropProcedure() public méthode

public DropProcedure ( ProcRef procName ) : void
procName ProcRef
Résultat void

DropSchema() public méthode

public DropSchema ( string schemaName, bool force ) : void
schemaName string
force bool
Résultat void

DropTable() public méthode

public DropTable ( TableRef tblName ) : void
tblName TableRef
Résultat void

DropTrigger() public méthode

public DropTrigger ( TriggerRef triggerName ) : void
triggerName TriggerRef
Résultat void

DropView() public méthode

public DropView ( TableRef viewName ) : void
viewName TableRef
Résultat void

EnsureInfrastructure() public méthode

public EnsureInfrastructure ( ) : void
Résultat void

ExecRefreshAllRightsProcedure() public méthode

public ExecRefreshAllRightsProcedure ( ) : void
Résultat void

ExecRefreshRightsOnProcedure() public méthode

public ExecRefreshRightsOnProcedure ( ProcRef procName ) : void
procName ProcRef
Résultat void

ExecuteSqlResource() public méthode

public ExecuteSqlResource ( Type type, string scriptResourceNameFormat ) : void
type System.Type
scriptResourceNameFormat string
Résultat void

GetColumnMaxLength() public méthode

public GetColumnMaxLength ( TableRef tblName, string colName ) : int
tblName TableRef
colName string
Résultat int

GetFKConstraintNames() public méthode

public GetFKConstraintNames ( ) : IEnumerable
Résultat IEnumerable

GetFunctionName() public méthode

public GetFunctionName ( string schemaName, string funcName ) : ProcRef
schemaName string
funcName string
Résultat ProcRef

GetFunctionNames() public méthode

public GetFunctionNames ( ) : IEnumerable
Résultat IEnumerable

GetHasColumnDefaultValue() public méthode

public GetHasColumnDefaultValue ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
Résultat bool

GetIsColumnNullable() public méthode

public GetIsColumnNullable ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
Résultat bool

GetProcedureDefinition() public méthode

public GetProcedureDefinition ( ProcRef proc ) : string
proc ProcRef
Résultat string

GetProcedureName() public méthode

public GetProcedureName ( string schemaName, string procName ) : ProcRef
schemaName string
procName string
Résultat ProcRef

GetProcedureNames() public méthode

public GetProcedureNames ( ) : IEnumerable
Résultat IEnumerable

GetSafeConnectionString() public méthode

public GetSafeConnectionString ( ) : string
Résultat string

GetSafeConnectionString() public méthode

public GetSafeConnectionString ( string connectionString ) : string
connectionString string
Résultat string

GetSavedSchema() public méthode

public GetSavedSchema ( ) : string
Résultat string

GetSchemaNames() public méthode

public GetSchemaNames ( ) : IEnumerable
Résultat IEnumerable

GetTableColumnNames() public méthode

public GetTableColumnNames ( TableRef tblName ) : IEnumerable
tblName TableRef
Résultat IEnumerable

GetTableColumns() public méthode

public GetTableColumns ( TableRef tblName ) : IEnumerable
tblName TableRef
Résultat IEnumerable

GetTableName() public méthode

public GetTableName ( string schemaName, string tblName ) : TableRef
schemaName string
tblName string
Résultat TableRef

GetTableNames() public méthode

public GetTableNames ( ) : IEnumerable
Résultat IEnumerable

GetTriggerNames() public méthode

public GetTriggerNames ( ) : IEnumerable
Résultat IEnumerable

GetViewDefinition() public méthode

public GetViewDefinition ( TableRef view ) : string
view TableRef
Résultat string

GetViewNames() public méthode

public GetViewNames ( ) : IEnumerable
Résultat IEnumerable

InsertFKs() public méthode

public InsertFKs ( TableRef srcTblName, string srcColName, TableRef tblName, string colName, string fkColName ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
fkColName string
Résultat void

LoggingSchemaProviderAdapter() public méthode

public LoggingSchemaProviderAdapter ( ISchemaProvider provider ) : System
provider ISchemaProvider
Résultat System

MapColumnData() public méthode

public MapColumnData ( TableRef srcTblName, string srcColNames, TableRef tblName, string colNames, object>.Dictionary mappings ) : void
srcTblName TableRef
srcColNames string
tblName TableRef
colNames string
mappings object>.Dictionary
Résultat void

MigrateFKs() public méthode

public MigrateFKs ( TableRef srcTblName, string srcColName, TableRef tblName, string colName ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
Résultat void

NativeToDbType() public méthode

public NativeToDbType ( string type ) : DbType
type string
Résultat DbType

Open() public méthode

public Open ( string connectionString ) : void
connectionString string
Résultat void

QuoteIdentifier() public méthode

public QuoteIdentifier ( string name ) : string
name string
Résultat string

ReadJoin() public méthode

public ReadJoin ( TableRef tblName, IEnumerable colNames, IEnumerable joins ) : IDataReader
tblName TableRef
colNames IEnumerable
joins IEnumerable
Résultat IDataReader

ReadTableData() public méthode

public ReadTableData ( TableRef tblName, IEnumerable colNames ) : IDataReader
tblName TableRef
colNames IEnumerable
Résultat IDataReader

ReadTableData() public méthode

public ReadTableData ( string sql ) : IDataReader
sql string
Résultat IDataReader

RefreshDbStats() public méthode

public RefreshDbStats ( ) : void
Résultat void

RenameColumn() public méthode

public RenameColumn ( TableRef tblName, string oldColName, string newColName ) : void
tblName TableRef
oldColName string
newColName string
Résultat void

RenameDiscriminatorValue() public méthode

public RenameDiscriminatorValue ( TableRef tblName, string oldValue, string newValue ) : void
tblName TableRef
oldValue string
newValue string
Résultat void

RenameFKConstraint() public méthode

public RenameFKConstraint ( TableRef tblName, string oldConstraintName, TableRef refTblName, string colName, string newConstraintName, bool onDeleteCascade ) : void
tblName TableRef
oldConstraintName string
refTblName TableRef
colName string
newConstraintName string
onDeleteCascade bool
Résultat void

RenameIndex() public méthode

public RenameIndex ( TableRef tblName, string oldIdxName, string newIdxName ) : void
tblName TableRef
oldIdxName string
newIdxName string
Résultat void

RenameTable() public méthode

public RenameTable ( TableRef oldTblName, TableRef newTblName ) : void
oldTblName TableRef
newTblName TableRef
Résultat void

RepairPositionColumn() public méthode

public RepairPositionColumn ( TableRef tblName, string positionColumnName ) : bool
tblName TableRef
positionColumnName string
Résultat bool

RollbackTransaction() public méthode

public RollbackTransaction ( ) : void
Résultat void

SaveSchema() public méthode

public SaveSchema ( string schema ) : void
schema string
Résultat void

TruncateTable() public méthode

public TruncateTable ( TableRef tblName ) : void
tblName TableRef
Résultat void

WriteDefaultValue() public méthode

public WriteDefaultValue ( TableRef tblName, string colName, object value ) : void
tblName TableRef
colName string
value object
Résultat void

WriteDefaultValue() public méthode

public WriteDefaultValue ( TableRef tblName, string colName, object value, IEnumerable discriminatorFilter ) : void
tblName TableRef
colName string
value object
discriminatorFilter IEnumerable
Résultat void

WriteGuidDefaultValue() public méthode

public WriteGuidDefaultValue ( TableRef tblName, string colName ) : void
tblName TableRef
colName string
Résultat void

WriteGuidDefaultValue() public méthode

public WriteGuidDefaultValue ( TableRef tblName, string colName, IEnumerable discriminatorFilter ) : void
tblName TableRef
colName string
discriminatorFilter IEnumerable
Résultat void

WriteTableData() public méthode

public WriteTableData ( TableRef destTbl, IDataReader source, IEnumerable colNames ) : void
destTbl TableRef
source IDataReader
colNames IEnumerable
Résultat void

WriteTableData() public méthode

public WriteTableData ( TableRef destTbl, IEnumerable colNames, IEnumerable values ) : void
destTbl TableRef
colNames IEnumerable
values IEnumerable
Résultat void