I am unable to connect hasura with already existing Microsoft SQL Server database. For testing purpose I have used a local Microsoft SQL Server database with:
- server name:
(LocalDb)MSSQLLocalDB
- user_name: user
- password: pass
I have used the hasura cloud for connecting the existing database.
This is the database url:
Driver={ODBC Driver 18 for SQL Server};Server=tcp (LocalDb)MSSQLLocalDB,1433;Database=tester;Uid=user;Pwd=password;Encrypt=optional
Error :
[
{
"definition": "Default",
"message": {
"exception": {
"message": "[Microsoft][ODBC Driver 18 for SQL Server]Login timeout expired",
"type": "unsuccessful_return_code"
}
},
"name": "source Default",
"reason": "Inconsistent object: mssql connection error",
"type": "source"
}
]
1
Umm, how will cloud be able to connect to your local computer?
30 mins ago