Type Alias: SQLClient
ts
type SQLClient =
| "pg"
| "pg-native"
| "sqlite3"
| "better-sqlite3"
| "mysql"
| "mysql2"
| "oracledb"
| "tedious"
| KnexSQLClient;
The SQL Adapter is a Kyoo adapter that uses SQL databases to store and manage jobs. See KnexSQLClient for more details on the shape of an SQL client class provided in the runtime.