C# Class Deveel.Data.Sql.Tables.ConstraintInfo

Afficher le fichier Open project: deveel/deveeldb Class Usage Examples

Méthodes publiques

Méthode Description
Check ( ObjectName tableName, SqlExpression expression ) : ConstraintInfo
Check ( string constraintName, ObjectName tableName, SqlExpression expression ) : ConstraintInfo
ConstraintInfo ( ConstraintType constraintType, ObjectName tableName, string columnNames ) : System
ConstraintInfo ( string constraintName, ConstraintType constraintType, ObjectName tableName, string columnNames ) : System
ForeignKey ( ObjectName tableName, string columnName, ObjectName refTable, string refColumn ) : ConstraintInfo
ForeignKey ( string constraintName, ObjectName tableName, string columnNames, ObjectName refTable, string refColumns ) : ConstraintInfo
PrimaryKey ( ObjectName tableName ) : ConstraintInfo
PrimaryKey ( string constraintName, ObjectName tableName ) : ConstraintInfo
Unique ( ObjectName tableName ) : ConstraintInfo
Unique ( string constraintName, ObjectName tableName, string columnNames ) : ConstraintInfo

Method Details

Check() public static méthode

public static Check ( ObjectName tableName, SqlExpression expression ) : ConstraintInfo
tableName ObjectName
expression Deveel.Data.Sql.Expressions.SqlExpression
Résultat ConstraintInfo

Check() public static méthode

public static Check ( string constraintName, ObjectName tableName, SqlExpression expression ) : ConstraintInfo
constraintName string
tableName ObjectName
expression Deveel.Data.Sql.Expressions.SqlExpression
Résultat ConstraintInfo

ConstraintInfo() public méthode

public ConstraintInfo ( ConstraintType constraintType, ObjectName tableName, string columnNames ) : System
constraintType ConstraintType
tableName ObjectName
columnNames string
Résultat System

ConstraintInfo() public méthode

public ConstraintInfo ( string constraintName, ConstraintType constraintType, ObjectName tableName, string columnNames ) : System
constraintName string
constraintType ConstraintType
tableName ObjectName
columnNames string
Résultat System

ForeignKey() public static méthode

public static ForeignKey ( ObjectName tableName, string columnName, ObjectName refTable, string refColumn ) : ConstraintInfo
tableName ObjectName
columnName string
refTable ObjectName
refColumn string
Résultat ConstraintInfo

ForeignKey() public static méthode

public static ForeignKey ( string constraintName, ObjectName tableName, string columnNames, ObjectName refTable, string refColumns ) : ConstraintInfo
constraintName string
tableName ObjectName
columnNames string
refTable ObjectName
refColumns string
Résultat ConstraintInfo

PrimaryKey() public static méthode

public static PrimaryKey ( ObjectName tableName ) : ConstraintInfo
tableName ObjectName
Résultat ConstraintInfo

PrimaryKey() public static méthode

public static PrimaryKey ( string constraintName, ObjectName tableName ) : ConstraintInfo
constraintName string
tableName ObjectName
Résultat ConstraintInfo

Unique() public static méthode

public static Unique ( ObjectName tableName ) : ConstraintInfo
tableName ObjectName
Résultat ConstraintInfo

Unique() public static méthode

public static Unique ( string constraintName, ObjectName tableName, string columnNames ) : ConstraintInfo
constraintName string
tableName ObjectName
columnNames string
Résultat ConstraintInfo