2023-10-22 18:38:29 +08:00
|
|
|
package common
|
|
|
|
|
|
2025-06-14 17:51:05 +08:00
|
|
|
const (
|
|
|
|
|
DatabaseTypeMySQL = "mysql"
|
|
|
|
|
DatabaseTypeSQLite = "sqlite"
|
|
|
|
|
DatabaseTypePostgreSQL = "postgres"
|
|
|
|
|
)
|
|
|
|
|
|
2023-10-22 18:38:29 +08:00
|
|
|
var UsingSQLite = false
|
|
|
|
|
var UsingPostgreSQL = false
|
2025-06-14 17:51:05 +08:00
|
|
|
var LogSqlType = DatabaseTypeSQLite // Default to SQLite for logging SQL queries
|
2024-03-12 00:35:12 +08:00
|
|
|
var UsingMySQL = false
|
2025-02-13 16:39:17 +08:00
|
|
|
var UsingClickHouse = false
|
2023-10-22 18:38:29 +08:00
|
|
|
|
2023-11-23 03:48:30 +08:00
|
|
|
var SQLitePath = "one-api.db?_busy_timeout=5000"
|