C# Class Net.Sf.Dbdeploy.Database.DbmsSyntax

Inheritance: IDbmsSyntax
Afficher le fichier Open project: brunomlopes/dbdeploy.net Class Usage Examples

Méthodes publiques

Свойство Type Description
SchemaRegex Regex

Méthodes publiques

Méthode Description
CreateChangeLogTableSqlScript ( string tableName ) : string

Gets the Change Log Table create script.

GetTableInfo ( string tableName ) : Net.Sf.Dbdeploy.Database.TableInfo

Gets the table name and schema.

GetTemplateFileNameFor ( string templateQualifier ) : string
TableExists ( string tableName ) : string

Gets the syntax for checking if a table exists.

Méthodes protégées

Méthode Description
DbmsSyntax ( string dbms ) : System.Globalization

Initializes a new instance of the DbmsSyntax class.

Method Details

CreateChangeLogTableSqlScript() public méthode

Gets the Change Log Table create script.
public CreateChangeLogTableSqlScript ( string tableName ) : string
tableName string Name of the change log table.
Résultat string

DbmsSyntax() protected méthode

Initializes a new instance of the DbmsSyntax class.
protected DbmsSyntax ( string dbms ) : System.Globalization
dbms string The DBMS.
Résultat System.Globalization

GetTableInfo() public méthode

Gets the table name and schema.
public GetTableInfo ( string tableName ) : Net.Sf.Dbdeploy.Database.TableInfo
tableName string Name of the table.
Résultat Net.Sf.Dbdeploy.Database.TableInfo

GetTemplateFileNameFor() public méthode

public GetTemplateFileNameFor ( string templateQualifier ) : string
templateQualifier string
Résultat string

TableExists() public méthode

Gets the syntax for checking if a table exists.
public TableExists ( string tableName ) : string
tableName string Name of the table.
Résultat string

Property Details

SchemaRegex public_oe static_oe property

The Regex for removing the schema name from a table.
public static Regex SchemaRegex
Résultat Regex