[]
Represents the characteristics of a SQL dialect used by a specific SQL database system.
public sealed class SqlDialect
| Name | Description |
|---|---|
| SqlDialect() |
| Name | Description |
|---|---|
| MsSql | Gets the instance of the SqlDialect with characteristics for the MS SQL database. |
| MySQL | Gets the instance of the SqlDialect with characteristics for the MySQL database. |
| OleDb | Gets the instance of the SqlDialect with characteristics for the OleDb provider. |
| Oracle | Gets the instance of the SqlDialect with characteristics for the Oracle database. |
| PostgreSQL | Gets the instance of the SqlDialect with characteristics for the PostgreSQL database. |
| SQLite | Gets the instance of the SqlDialect with characteristics for the SQLite database. |
| Name | Description |
|---|---|
| IdEscapeChars | Gets the characters used to escape SQL identifiers in the specific SQL dialect. |
| Name | Gets the name of the SQL dialect, such as "MySQL" or "MsSql". |
| ParameterChar | Gets the character used to prefix parameters in SQL statements for the specific SQL dialect. |
| UnnamedParameters | Gets a value indicating whether the SQL dialect allows the use of unnamed parameters in SQL statements. |