C# 클래스 Zetbox.Server.SchemaManagement.LoggingSchemaProviderAdapter

상속: ISchemaProvider
파일 보기 프로젝트 열기: daszat/zetbox

공개 메소드들

메소드 설명
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

비공개 메소드들

메소드 설명
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

메소드 상세

AlterColumn() 공개 메소드

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
리턴 void

BeginTransaction() 공개 메소드

public BeginTransaction ( ) : void
리턴 void

CheckCheckConstraintExists() 공개 메소드

public CheckCheckConstraintExists ( TableRef tblName, string constraintName ) : bool
tblName TableRef
constraintName string
리턴 bool

CheckCheckConstraintPossible() 공개 메소드

public CheckCheckConstraintPossible ( TableRef tblName, string colName, string newConstraintName, Dictionary checkExpressions ) : bool
tblName TableRef
colName string
newConstraintName string
checkExpressions Dictionary
리턴 bool

CheckColumnContainsNulls() 공개 메소드

public CheckColumnContainsNulls ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
리턴 bool

CheckColumnContainsValues() 공개 메소드

public CheckColumnContainsValues ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
리턴 bool

CheckColumnExists() 공개 메소드

public CheckColumnExists ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
리턴 bool

CheckDatabaseExists() 공개 메소드

public CheckDatabaseExists ( string dbName ) : bool
dbName string
리턴 bool

CheckFKColumnContainsUniqueValues() 공개 메소드

public CheckFKColumnContainsUniqueValues ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
리턴 bool

CheckFKConstraintExists() 공개 메소드

public CheckFKConstraintExists ( TableRef tblName, string fkName ) : bool
tblName TableRef
fkName string
리턴 bool

CheckFunctionExists() 공개 메소드

public CheckFunctionExists ( ProcRef funcName ) : bool
funcName ProcRef
리턴 bool

CheckIndexExists() 공개 메소드

public CheckIndexExists ( TableRef tblName, string idxName ) : bool
tblName TableRef
idxName string
리턴 bool

CheckIndexPossible() 공개 메소드

public CheckIndexPossible ( TableRef tblName, string idxName, bool unique, bool clustered ) : bool
tblName TableRef
idxName string
unique bool
clustered bool
리턴 bool

CheckPositionColumnValidity() 공개 메소드

public CheckPositionColumnValidity ( TableRef tblName, string fkName, string positionColumnName ) : bool
tblName TableRef
fkName string
positionColumnName string
리턴 bool

CheckProcedureExists() 공개 메소드

public CheckProcedureExists ( ProcRef procName ) : bool
procName ProcRef
리턴 bool

CheckSchemaExists() 공개 메소드

public CheckSchemaExists ( string schemaName ) : bool
schemaName string
리턴 bool

CheckTableContainsData() 공개 메소드

public CheckTableContainsData ( TableRef tblName ) : bool
tblName TableRef
리턴 bool

CheckTableContainsData() 공개 메소드

public CheckTableContainsData ( TableRef tblName, IEnumerable discriminatorFilter ) : bool
tblName TableRef
discriminatorFilter IEnumerable
리턴 bool

CheckTableExists() 공개 메소드

public CheckTableExists ( TableRef tblName ) : bool
tblName TableRef
리턴 bool

CheckTriggerExists() 공개 메소드

public CheckTriggerExists ( TriggerRef triggerName ) : bool
triggerName TriggerRef
리턴 bool

CheckViewExists() 공개 메소드

public CheckViewExists ( TableRef viewName ) : bool
viewName TableRef
리턴 bool

CommitTransaction() 공개 메소드

public CommitTransaction ( ) : void
리턴 void

CopyColumnData() 공개 메소드

public CopyColumnData ( TableRef srcTblName, string srcColName, TableRef tblName, string colName ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
리턴 void

CopyColumnData() 공개 메소드

public CopyColumnData ( TableRef srcTblName, string srcColName, TableRef tblName, string colName, string discriminatorValue ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
discriminatorValue string
리턴 void

CopyFKs() 공개 메소드

public CopyFKs ( TableRef srcTblName, string srcColName, TableRef destTblName, string destColName, string srcFKColName ) : void
srcTblName TableRef
srcColName string
destTblName TableRef
destColName string
srcFKColName string
리턴 void

CountRows() 공개 메소드

public CountRows ( TableRef tblName ) : long
tblName TableRef
리턴 long

CreateCheckConstraint() 공개 메소드

public CreateCheckConstraint ( TableRef tblName, string colName, string newConstraintName, Dictionary checkExpressions ) : void
tblName TableRef
colName string
newConstraintName string
checkExpressions Dictionary
리턴 void

CreateColumn() 공개 메소드

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
리턴 void

CreateContinuousSequenceNumberProcedure() 공개 메소드

public CreateContinuousSequenceNumberProcedure ( ) : void
리턴 void

CreateDatabase() 공개 메소드

public CreateDatabase ( string dbName ) : void
dbName string
리턴 void

CreateEmptyRightsViewUnmaterialized() 공개 메소드

public CreateEmptyRightsViewUnmaterialized ( TableRef viewName ) : void
viewName TableRef
리턴 void

CreateFKConstraint() 공개 메소드

public CreateFKConstraint ( TableRef tblName, TableRef refTblName, string colName, string constraintName, bool onDeleteCascade ) : void
tblName TableRef
refTblName TableRef
colName string
constraintName string
onDeleteCascade bool
리턴 void

CreateIndex() 공개 메소드

public CreateIndex ( TableRef tblName, string idxName, bool unique, bool clustered ) : void
tblName TableRef
idxName string
unique bool
clustered bool
리턴 void

CreatePositionColumnValidCheckProcedures() 공개 메소드

public CreatePositionColumnValidCheckProcedures ( string>.ILookup refSpecs ) : void
refSpecs string>.ILookup
리턴 void

CreateRefreshAllRightsProcedure() 공개 메소드

public CreateRefreshAllRightsProcedure ( List refreshProcNames ) : void
refreshProcNames List
리턴 void

CreateRefreshRightsOnProcedure() 공개 메소드

public CreateRefreshRightsOnProcedure ( ProcRef procName, TableRef viewUnmaterializedName, TableRef tblName, TableRef tblNameRights ) : void
procName ProcRef
viewUnmaterializedName TableRef
tblName TableRef
tblNameRights TableRef
리턴 void

CreateRightsViewUnmaterialized() 공개 메소드

public CreateRightsViewUnmaterialized ( TableRef viewName, TableRef tblName, TableRef tblNameRights, IList acls ) : void
viewName TableRef
tblName TableRef
tblNameRights TableRef
acls IList
리턴 void

CreateSchema() 공개 메소드

public CreateSchema ( string schemaName ) : void
schemaName string
리턴 void

CreateSequenceNumberProcedure() 공개 메소드

public CreateSequenceNumberProcedure ( ) : void
리턴 void

CreateTable() 공개 메소드

public CreateTable ( TableRef tblName, IEnumerable cols ) : void
tblName TableRef
cols IEnumerable
리턴 void

CreateTable() 공개 메소드

public CreateTable ( TableRef tblName, bool idAsIdentityColumn ) : void
tblName TableRef
idAsIdentityColumn bool
리턴 void

CreateTable() 공개 메소드

public CreateTable ( TableRef tblName, bool idAsIdentityColumn, bool createPrimaryKey ) : void
tblName TableRef
idAsIdentityColumn bool
createPrimaryKey bool
리턴 void

CreateUpdateRightsTrigger() 공개 메소드

public CreateUpdateRightsTrigger ( TriggerRef triggerName, TableRef tblName, List tblList, List dependingCols ) : void
triggerName TriggerRef
tblName TableRef
tblList List
dependingCols List
리턴 void

DbTypeToNative() 공개 메소드

public DbTypeToNative ( DbType type ) : string
type DbType
리턴 string

DblinkConnect() 공개 메소드

public DblinkConnect ( TableRef tblName ) : void
tblName TableRef
리턴 void

Dispose() 공개 메소드

public Dispose ( ) : void
리턴 void

DropAllObjects() 공개 메소드

public DropAllObjects ( ) : void
리턴 void

DropCheckConstraint() 공개 메소드

public DropCheckConstraint ( TableRef tblName, string constraintName ) : void
tblName TableRef
constraintName string
리턴 void

DropColumn() 공개 메소드

public DropColumn ( TableRef tblName, string colName ) : void
tblName TableRef
colName string
리턴 void

DropDatabase() 공개 메소드

public DropDatabase ( string dbName ) : void
dbName string
리턴 void

DropFKConstraint() 공개 메소드

public DropFKConstraint ( TableRef tblName, string constraintName ) : void
tblName TableRef
constraintName string
리턴 void

DropFunction() 공개 메소드

public DropFunction ( ProcRef funcName ) : void
funcName ProcRef
리턴 void

DropIndex() 공개 메소드

public DropIndex ( TableRef tblName, string idxName ) : void
tblName TableRef
idxName string
리턴 void

DropProcedure() 공개 메소드

public DropProcedure ( ProcRef procName ) : void
procName ProcRef
리턴 void

DropSchema() 공개 메소드

public DropSchema ( string schemaName, bool force ) : void
schemaName string
force bool
리턴 void

DropTable() 공개 메소드

public DropTable ( TableRef tblName ) : void
tblName TableRef
리턴 void

DropTrigger() 공개 메소드

public DropTrigger ( TriggerRef triggerName ) : void
triggerName TriggerRef
리턴 void

DropView() 공개 메소드

public DropView ( TableRef viewName ) : void
viewName TableRef
리턴 void

EnsureInfrastructure() 공개 메소드

public EnsureInfrastructure ( ) : void
리턴 void

ExecRefreshAllRightsProcedure() 공개 메소드

public ExecRefreshAllRightsProcedure ( ) : void
리턴 void

ExecRefreshRightsOnProcedure() 공개 메소드

public ExecRefreshRightsOnProcedure ( ProcRef procName ) : void
procName ProcRef
리턴 void

ExecuteSqlResource() 공개 메소드

public ExecuteSqlResource ( Type type, string scriptResourceNameFormat ) : void
type System.Type
scriptResourceNameFormat string
리턴 void

GetColumnMaxLength() 공개 메소드

public GetColumnMaxLength ( TableRef tblName, string colName ) : int
tblName TableRef
colName string
리턴 int

GetFKConstraintNames() 공개 메소드

public GetFKConstraintNames ( ) : IEnumerable
리턴 IEnumerable

GetFunctionName() 공개 메소드

public GetFunctionName ( string schemaName, string funcName ) : ProcRef
schemaName string
funcName string
리턴 ProcRef

GetFunctionNames() 공개 메소드

public GetFunctionNames ( ) : IEnumerable
리턴 IEnumerable

GetHasColumnDefaultValue() 공개 메소드

public GetHasColumnDefaultValue ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
리턴 bool

GetIsColumnNullable() 공개 메소드

public GetIsColumnNullable ( TableRef tblName, string colName ) : bool
tblName TableRef
colName string
리턴 bool

GetProcedureDefinition() 공개 메소드

public GetProcedureDefinition ( ProcRef proc ) : string
proc ProcRef
리턴 string

GetProcedureName() 공개 메소드

public GetProcedureName ( string schemaName, string procName ) : ProcRef
schemaName string
procName string
리턴 ProcRef

GetProcedureNames() 공개 메소드

public GetProcedureNames ( ) : IEnumerable
리턴 IEnumerable

GetSafeConnectionString() 공개 메소드

public GetSafeConnectionString ( ) : string
리턴 string

GetSafeConnectionString() 공개 메소드

public GetSafeConnectionString ( string connectionString ) : string
connectionString string
리턴 string

GetSavedSchema() 공개 메소드

public GetSavedSchema ( ) : string
리턴 string

GetSchemaNames() 공개 메소드

public GetSchemaNames ( ) : IEnumerable
리턴 IEnumerable

GetTableColumnNames() 공개 메소드

public GetTableColumnNames ( TableRef tblName ) : IEnumerable
tblName TableRef
리턴 IEnumerable

GetTableColumns() 공개 메소드

public GetTableColumns ( TableRef tblName ) : IEnumerable
tblName TableRef
리턴 IEnumerable

GetTableName() 공개 메소드

public GetTableName ( string schemaName, string tblName ) : TableRef
schemaName string
tblName string
리턴 TableRef

GetTableNames() 공개 메소드

public GetTableNames ( ) : IEnumerable
리턴 IEnumerable

GetTriggerNames() 공개 메소드

public GetTriggerNames ( ) : IEnumerable
리턴 IEnumerable

GetViewDefinition() 공개 메소드

public GetViewDefinition ( TableRef view ) : string
view TableRef
리턴 string

GetViewNames() 공개 메소드

public GetViewNames ( ) : IEnumerable
리턴 IEnumerable

InsertFKs() 공개 메소드

public InsertFKs ( TableRef srcTblName, string srcColName, TableRef tblName, string colName, string fkColName ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
fkColName string
리턴 void

LoggingSchemaProviderAdapter() 공개 메소드

public LoggingSchemaProviderAdapter ( ISchemaProvider provider ) : System
provider ISchemaProvider
리턴 System

MapColumnData() 공개 메소드

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
리턴 void

MigrateFKs() 공개 메소드

public MigrateFKs ( TableRef srcTblName, string srcColName, TableRef tblName, string colName ) : void
srcTblName TableRef
srcColName string
tblName TableRef
colName string
리턴 void

NativeToDbType() 공개 메소드

public NativeToDbType ( string type ) : DbType
type string
리턴 DbType

Open() 공개 메소드

public Open ( string connectionString ) : void
connectionString string
리턴 void

QuoteIdentifier() 공개 메소드

public QuoteIdentifier ( string name ) : string
name string
리턴 string

ReadJoin() 공개 메소드

public ReadJoin ( TableRef tblName, IEnumerable colNames, IEnumerable joins ) : IDataReader
tblName TableRef
colNames IEnumerable
joins IEnumerable
리턴 IDataReader

ReadTableData() 공개 메소드

public ReadTableData ( TableRef tblName, IEnumerable colNames ) : IDataReader
tblName TableRef
colNames IEnumerable
리턴 IDataReader

ReadTableData() 공개 메소드

public ReadTableData ( string sql ) : IDataReader
sql string
리턴 IDataReader

RefreshDbStats() 공개 메소드

public RefreshDbStats ( ) : void
리턴 void

RenameColumn() 공개 메소드

public RenameColumn ( TableRef tblName, string oldColName, string newColName ) : void
tblName TableRef
oldColName string
newColName string
리턴 void

RenameDiscriminatorValue() 공개 메소드

public RenameDiscriminatorValue ( TableRef tblName, string oldValue, string newValue ) : void
tblName TableRef
oldValue string
newValue string
리턴 void

RenameFKConstraint() 공개 메소드

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
리턴 void

RenameIndex() 공개 메소드

public RenameIndex ( TableRef tblName, string oldIdxName, string newIdxName ) : void
tblName TableRef
oldIdxName string
newIdxName string
리턴 void

RenameTable() 공개 메소드

public RenameTable ( TableRef oldTblName, TableRef newTblName ) : void
oldTblName TableRef
newTblName TableRef
리턴 void

RepairPositionColumn() 공개 메소드

public RepairPositionColumn ( TableRef tblName, string positionColumnName ) : bool
tblName TableRef
positionColumnName string
리턴 bool

RollbackTransaction() 공개 메소드

public RollbackTransaction ( ) : void
리턴 void

SaveSchema() 공개 메소드

public SaveSchema ( string schema ) : void
schema string
리턴 void

TruncateTable() 공개 메소드

public TruncateTable ( TableRef tblName ) : void
tblName TableRef
리턴 void

WriteDefaultValue() 공개 메소드

public WriteDefaultValue ( TableRef tblName, string colName, object value ) : void
tblName TableRef
colName string
value object
리턴 void

WriteDefaultValue() 공개 메소드

public WriteDefaultValue ( TableRef tblName, string colName, object value, IEnumerable discriminatorFilter ) : void
tblName TableRef
colName string
value object
discriminatorFilter IEnumerable
리턴 void

WriteGuidDefaultValue() 공개 메소드

public WriteGuidDefaultValue ( TableRef tblName, string colName ) : void
tblName TableRef
colName string
리턴 void

WriteGuidDefaultValue() 공개 메소드

public WriteGuidDefaultValue ( TableRef tblName, string colName, IEnumerable discriminatorFilter ) : void
tblName TableRef
colName string
discriminatorFilter IEnumerable
리턴 void

WriteTableData() 공개 메소드

public WriteTableData ( TableRef destTbl, IDataReader source, IEnumerable colNames ) : void
destTbl TableRef
source IDataReader
colNames IEnumerable
리턴 void

WriteTableData() 공개 메소드

public WriteTableData ( TableRef destTbl, IEnumerable colNames, IEnumerable values ) : void
destTbl TableRef
colNames IEnumerable
values IEnumerable
리턴 void