feat(SQL): Added Base of MSSQL Connector
This commit is contained in:
parent
e5aaf4e31a
commit
5563afa4d6
2 changed files with 71 additions and 0 deletions
|
|
@ -49,6 +49,10 @@ func GetSQLInstance() SQLService {
|
|||
{
|
||||
return GetMariaDBInstance(sqlConfig)
|
||||
}
|
||||
case "mssql":
|
||||
{
|
||||
return GetMSSQLInstance(sqlConfig)
|
||||
}
|
||||
}
|
||||
|
||||
return nil
|
||||
|
|
|
|||
Reference in a new issue