mirror of
https://github.com/CodePhiliaX/Chat2DB.git
synced 2025-07-29 10:43:06 +08:00
Driver configuration is configured through json,
Support driver attribute configuration.
This commit is contained in:
@ -9,7 +9,29 @@
|
||||
"https://oss.sqlgpt.cn/lib/mssql-jdbc-11.2.1.jre17.jar"
|
||||
],
|
||||
"jdbcDriver": "mssql-jdbc-11.2.1.jre17.jar",
|
||||
"jdbcDriverClass": "com.microsoft.sqlserver.jdbc.SQLServerDriver"
|
||||
"jdbcDriverClass": "com.microsoft.sqlserver.jdbc.SQLServerDriver",
|
||||
"extendInfo": [
|
||||
{
|
||||
"key": "encrypt",
|
||||
"value": "false",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"key": "trustServerCertificate",
|
||||
"value": "true",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"key": "integratedSecurity",
|
||||
"value": "false",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"key": "Trusted_Connection",
|
||||
"value": "yes",
|
||||
"required": false
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"name": "SQLServer"
|
||||
|
Reference in New Issue
Block a user