This commit is contained in:
2025-09-08 16:36:10 +08:00
parent 1c58aacc82
commit fc74560292

17
backend/apps/db/type.py Normal file
View File

@@ -0,0 +1,17 @@
# Author: Junjun
# Date: 2025/5/22
from typing import Dict
def db_type_relation() -> Dict:
return {
"mysql": "MySQL",
"sqlServer": "Microsoft SQL Server",
"pg": "PostgreSQL",
"excel": "Excel/CSV",
"oracle": "Oracle",
"ck": "ClickHouse",
"dm": "达梦",
"doris": "Apache Doris",
"redshift": "AWS Redshift"
}