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
Copy the ODBC connection string and remove the driver clause before storing it in your `DB_CONNECTION_STRING` environment variable.
242
242
243
-
### macOS & Linux
244
-
Similar commands are available for macOS and Linux. See the [go-sqlcmd documentation](https://learn.microsoft.com/en-us/sql/tools/sqlcmd/quickstart-sqlcmd-create-container?view=sql-server-ver17) for platform-specific instructions.
243
+
### macOS
244
+
```bash
245
+
# Install Docker Desktop and sqlcmd
246
+
brew install --cask docker
247
+
brew install sqlcmd
248
+
```
249
+
Start Docker Desktop, then:
250
+
```bash
251
+
sqlcmd create mssql --name mssql-python --accept-eula tag 2025-latest --using https://github.com/Microsoft/sql-server-samples/releases/download/wide-world-importers-v1.0/WideWorldImporters-Full.bak
252
+
sqlcmd config connection-strings
253
+
```
254
+
Copy the ODBC connection string and remove the driver clause before storing it in your `DB_CONNECTION_STRING` environment variable.
0 commit comments