ENUMDBTYPE
Specifies the database dialect or engine used by the data source.
List of ENUMDBTYPE
| Name | Description |
| MSSQL | Microsoft SQL Server. |
| PostgreSQL | PostgreSQL database dialect. |
| MySQL | MySQL database dialect. |
| SQLite | SQLite embedded database. |
| Oracle | Oracle database. |
| MariaDB | MariaDB database. |
| Snowflake | Snowflake cloud data warehouse. |
| BigQuery | Google BigQuery analytics database. |
Examples
MODULE
MODEL
DATA FROM DATABASE
DbType = MSSQL
ConnectionName = 'CustomerDB'
SQL = '
SELECT
SentimentScore,
IssueSeverityScore,
WaitTime,
CustomerAge,
RuleAction
FROM CustomerInteractions
'