Свойство | Type | Description | |
---|---|---|---|
Instance |
Méthode | Description | |
---|---|---|
AddCheckConstraint ( string name, string table, string checkSql ) : void | ||
AddColumn ( string table, Column column ) : void | ||
AddColumn ( string table, string sqlColumn ) : void | ||
AddColumn ( string table, string column, DbType type ) : void | ||
AddColumn ( string table, string column, DbType type, ColumnProperty property ) : void | ||
AddColumn ( string table, string column, DbType type, int size ) : void | ||
AddColumn ( string table, string column, DbType type, int size, ColumnProperty property ) : void | ||
AddColumn ( string table, string column, DbType type, int size, ColumnProperty property, object defaultValue ) : void | ||
AddColumn ( string table, string column, DbType type, object defaultValue ) : void | ||
AddForeignKey ( string name, string primaryTable, string primaryColumn, string refTable, string refColumn ) : void | ||
AddForeignKey ( string name, string primaryTable, string primaryColumn, string refTable, string refColumn, Simple.Migrator.Framework.ForeignKeyConstraint constraint ) : void | ||
AddIndex ( string name, string table ) : void | ||
AddPrimaryKey ( string name, string table ) : void | ||
AddTable ( string name ) : void | ||
AddTable ( string name, string engine ) : void | ||
AddUniqueConstraint ( string name, string table ) : void | ||
BeginTransaction ( ) : void | ||
ChangeColumn ( string table, Column column ) : void | ||
ColumnExists ( string table, string column ) : bool | ||
Commit ( ) : void | ||
ConstraintExists ( string table, string name ) : bool | ||
Delete ( string table, string columns, string columnValues ) : int | ||
Dispose ( ) : void | ||
ExecuteNonQuery ( string sql ) : int | ||
ExecuteQuery ( string sql ) : IDataReader | ||
ExecuteScalar ( string sql ) : object | ||
GenerateForeignKey ( string primaryTable, string refTable ) : void | ||
GenerateForeignKey ( string primaryTable, string refTable, Simple.Migrator.Framework.ForeignKeyConstraint constraint ) : void | ||
GenerateForeignKey ( string primaryTable, string primaryColumn, string refTable, string refColumn ) : void | ||
GenerateForeignKey ( string primaryTable, string primaryColumn, string refTable, string refColumn, Simple.Migrator.Framework.ForeignKeyConstraint constraint ) : void | ||
GetColumnByName ( string table, string column ) : Column | ||
GetColumns ( string table ) : Column[] | ||
GetCommand ( ) : IDbCommand | ||
GetTables ( ) : string[] | ||
Insert ( string table, string columns, string columnValues ) : int | ||
MigrationApplied ( long version ) : void | ||
MigrationUnApplied ( long version ) : void | ||
PrimaryKeyExists ( string table, string name ) : bool | ||
RemoveColumn ( string table, string column ) : void | ||
RemoveConstraint ( string table, string name ) : void | ||
RemoveForeignKey ( string table, string name ) : void | ||
RemoveIndex ( string name, string table ) : void | ||
RemoveTable ( string name ) : void | ||
RenameColumn ( string tableName, string oldColumnName, string newColumnName ) : void | ||
RenameTable ( string oldName, string newName ) : void | ||
Rollback ( ) : void | ||
SchemaInfoName ( string schemainfoname ) : void | ||
Select ( string what, string from ) : IDataReader | ||
Select ( string what, string from, string where ) : IDataReader | ||
Select ( string what, string from, string where, string orderBy ) : IDataReader | ||
SelectScalar ( string what, string from ) : object | ||
SelectScalar ( string what, string from, string where ) : object | ||
SelectScalar ( string what, string from, string where, string orderBy ) : object | ||
TableExists ( string table ) : bool | ||
Update ( string table, string columns, string columnValues ) : int | ||
Update ( string table, string columns, string columnValues, string where ) : int | ||
this ( string provider ) : ITransformationProvider |
Méthode | Description | |
---|---|---|
CreateSchemaInfoTable ( ) : void |
Méthode | Description | |
---|---|---|
NoOpTransformationProvider ( ) : System.Collections.Generic |
public AddCheckConstraint ( string name, string table, string checkSql ) : void | ||
name | string | |
table | string | |
checkSql | string | |
Résultat | void |
public AddColumn ( string table, Column column ) : void | ||
table | string | |
column | Column | |
Résultat | void |
public AddColumn ( string table, string sqlColumn ) : void | ||
table | string | |
sqlColumn | string | |
Résultat | void |
public AddColumn ( string table, string column, DbType type ) : void | ||
table | string | |
column | string | |
type | DbType | |
Résultat | void |
public AddColumn ( string table, string column, DbType type, ColumnProperty property ) : void | ||
table | string | |
column | string | |
type | DbType | |
property | ColumnProperty | |
Résultat | void |
public AddColumn ( string table, string column, DbType type, int size ) : void | ||
table | string | |
column | string | |
type | DbType | |
size | int | |
Résultat | void |
public AddColumn ( string table, string column, DbType type, int size, ColumnProperty property ) : void | ||
table | string | |
column | string | |
type | DbType | |
size | int | |
property | ColumnProperty | |
Résultat | void |
public AddColumn ( string table, string column, DbType type, int size, ColumnProperty property, object defaultValue ) : void | ||
table | string | |
column | string | |
type | DbType | |
size | int | |
property | ColumnProperty | |
defaultValue | object | |
Résultat | void |
public AddColumn ( string table, string column, DbType type, object defaultValue ) : void | ||
table | string | |
column | string | |
type | DbType | |
defaultValue | object | |
Résultat | void |
public AddForeignKey ( string name, string primaryTable, string primaryColumn, string refTable, string refColumn ) : void | ||
name | string | |
primaryTable | string | |
primaryColumn | string | |
refTable | string | |
refColumn | string | |
Résultat | void |
public AddForeignKey ( string name, string primaryTable, string primaryColumn, string refTable, string refColumn, Simple.Migrator.Framework.ForeignKeyConstraint constraint ) : void | ||
name | string | |
primaryTable | string | |
primaryColumn | string | |
refTable | string | |
refColumn | string | |
constraint | Simple.Migrator.Framework.ForeignKeyConstraint | |
Résultat | void |
public AddIndex ( string name, string table ) : void | ||
name | string | |
table | string | |
Résultat | void |
public AddPrimaryKey ( string name, string table ) : void | ||
name | string | |
table | string | |
Résultat | void |
public AddTable ( string name, string engine ) : void | ||
name | string | |
engine | string | |
Résultat | void |
public AddUniqueConstraint ( string name, string table ) : void | ||
name | string | |
table | string | |
Résultat | void |
public ChangeColumn ( string table, Column column ) : void | ||
table | string | |
column | Column | |
Résultat | void |
public ColumnExists ( string table, string column ) : bool | ||
table | string | |
column | string | |
Résultat | bool |
public ConstraintExists ( string table, string name ) : bool | ||
table | string | |
name | string | |
Résultat | bool |
public Delete ( string table, string columns, string columnValues ) : int | ||
table | string | |
columns | string | |
columnValues | string | |
Résultat | int |
public ExecuteNonQuery ( string sql ) : int | ||
sql | string | |
Résultat | int |
public ExecuteQuery ( string sql ) : IDataReader | ||
sql | string | |
Résultat | IDataReader |
public ExecuteScalar ( string sql ) : object | ||
sql | string | |
Résultat | object |
public GenerateForeignKey ( string primaryTable, string refTable ) : void | ||
primaryTable | string | |
refTable | string | |
Résultat | void |
public GenerateForeignKey ( string primaryTable, string refTable, Simple.Migrator.Framework.ForeignKeyConstraint constraint ) : void | ||
primaryTable | string | |
refTable | string | |
constraint | Simple.Migrator.Framework.ForeignKeyConstraint | |
Résultat | void |
public GenerateForeignKey ( string primaryTable, string primaryColumn, string refTable, string refColumn ) : void | ||
primaryTable | string | |
primaryColumn | string | |
refTable | string | |
refColumn | string | |
Résultat | void |
public GenerateForeignKey ( string primaryTable, string primaryColumn, string refTable, string refColumn, Simple.Migrator.Framework.ForeignKeyConstraint constraint ) : void | ||
primaryTable | string | |
primaryColumn | string | |
refTable | string | |
refColumn | string | |
constraint | Simple.Migrator.Framework.ForeignKeyConstraint | |
Résultat | void |
public GetColumnByName ( string table, string column ) : Column | ||
table | string | |
column | string | |
Résultat | Column |
public GetColumns ( string table ) : Column[] | ||
table | string | |
Résultat | Column[] |
public Insert ( string table, string columns, string columnValues ) : int | ||
table | string | |
columns | string | |
columnValues | string | |
Résultat | int |
public MigrationApplied ( long version ) : void | ||
version | long | |
Résultat | void |
public MigrationUnApplied ( long version ) : void | ||
version | long | |
Résultat | void |
public PrimaryKeyExists ( string table, string name ) : bool | ||
table | string | |
name | string | |
Résultat | bool |
public RemoveColumn ( string table, string column ) : void | ||
table | string | |
column | string | |
Résultat | void |
public RemoveConstraint ( string table, string name ) : void | ||
table | string | |
name | string | |
Résultat | void |
public RemoveForeignKey ( string table, string name ) : void | ||
table | string | |
name | string | |
Résultat | void |
public RemoveIndex ( string name, string table ) : void | ||
name | string | |
table | string | |
Résultat | void |
public RenameColumn ( string tableName, string oldColumnName, string newColumnName ) : void | ||
tableName | string | |
oldColumnName | string | |
newColumnName | string | |
Résultat | void |
public RenameTable ( string oldName, string newName ) : void | ||
oldName | string | |
newName | string | |
Résultat | void |
public SchemaInfoName ( string schemainfoname ) : void | ||
schemainfoname | string | |
Résultat | void |
public Select ( string what, string from ) : IDataReader | ||
what | string | |
from | string | |
Résultat | IDataReader |
public Select ( string what, string from, string where ) : IDataReader | ||
what | string | |
from | string | |
where | string | |
Résultat | IDataReader |
public Select ( string what, string from, string where, string orderBy ) : IDataReader | ||
what | string | |
from | string | |
where | string | |
orderBy | string | |
Résultat | IDataReader |
public SelectScalar ( string what, string from ) : object | ||
what | string | |
from | string | |
Résultat | object |
public SelectScalar ( string what, string from, string where ) : object | ||
what | string | |
from | string | |
where | string | |
Résultat | object |
public SelectScalar ( string what, string from, string where, string orderBy ) : object | ||
what | string | |
from | string | |
where | string | |
orderBy | string | |
Résultat | object |
public Update ( string table, string columns, string columnValues ) : int | ||
table | string | |
columns | string | |
columnValues | string | |
Résultat | int |
public Update ( string table, string columns, string columnValues, string where ) : int | ||
table | string | |
columns | string | |
columnValues | string | |
where | string | |
Résultat | int |
public this ( string provider ) : ITransformationProvider | ||
provider | string | |
Résultat | ITransformationProvider |