You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Update docs to reflect ADO.NET connection string (#167)
<!-- The PR description should answer 2 (maybe 3) important questions:
-->
### What
In Hasura v2 we supported ODBC connection string for sqlserver, but in
DDN we support ADO.NET connection strings.
<!-- What is this PR trying to accomplish (and why, if it's not
obvious)? -->
### How
- Update docs to reflect the connection string format supported
- Try to detect ODBC format and throw a useful error when initializing
the connection
<!-- How is it trying to accomplish it (what are the implementation
steps)? -->
> **Note:** ADO.NET is the supported connection string format for SQL Server for ndc-sqlserver in DDN.
8
+
> You can find the documentation for ADO.NET SQL Server connection strings [here](https://learn.microsoft.com/en-us/dotnet/framework/data/adonet/connection-string-syntax#sqlclient-connection-strings).
9
+
> This is a change from Hasura version 2, where ODBC connection strings were supported.
10
+
11
+
7
12
With this connector, Hasura allows you to instantly create a real-time GraphQL API on top of your data models in
8
13
Microsoft SQL Server. This connector supports SQL Server's functionalities listed in the table below, allowing for
9
14
efficient and scalable data operations. Additionally, users benefit from all the powerful features of Hasura’s Data
@@ -77,6 +82,8 @@ default suggested port.
77
82
78
83
#### Step 2.3: Provide the env vars for the connector
79
84
85
+
> **Note:** The `CONNECTION_URI` is the connection string of the SQL Server database. You can find the documentation for ADO.NET SQL Server connection string formats [here](https://learn.microsoft.com/en-us/dotnet/framework/data/adonet/connection-string-syntax#sqlclient-connection-strings).
0 commit comments