Skip to content

Commit 07b15df

Browse files
committed
feat: document mssql driver availability
1 parent 4ea8c5e commit 07b15df

File tree

2 files changed

+11
-2
lines changed

2 files changed

+11
-2
lines changed

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
# SQL Studio
44

5-
Single binary, single command SQL database explorer. SQL studio supports *SQLite*, *libSQL*, *PostgreSQL*, *MySQL* and *DuckDB*.
5+
Single binary, single command SQL database explorer. SQL studio supports *SQLite*, *libSQL*, *PostgreSQL*, *MySQL*, *DuckDB* and *Microsoft SQL Server*.
66

77
### Local SQLite DB File
88

@@ -46,6 +46,12 @@ sql-studio duckdb [duckdb_file]
4646
sql-studio clickhouse [URL] [USER] [PASSWORD] [DATABASE]
4747
```
4848

49+
### Microsoft SQL Server
50+
51+
```bash
52+
sql-studio mssql [connection]
53+
```
54+
4955
## Features
5056

5157
- Overview page with common metadata.

src/main.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -107,7 +107,10 @@ enum Command {
107107
},
108108

109109
/// A Microsoft SQL Server database.
110-
Mssql { connection: String },
110+
Mssql {
111+
/// ADO.NET connection string.
112+
connection: String,
113+
},
111114
}
112115

113116
#[tokio::main]

0 commit comments

Comments
 (0)