Skip to content

Commit a491476

Browse files
committed
docs: add missing databases to sidebar and remove em dashes
1 parent dacbab8 commit a491476

File tree

8 files changed

+49
-46
lines changed

8 files changed

+49
-46
lines changed

docs/changelog.mdx

Lines changed: 33 additions & 33 deletions
Large diffs are not rendered by default.

docs/databases/bigquery.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ gcloud auth application-default login --project=my-project
3131
6. After approving, TablePro receives the token automatically
3232

3333
<Warning>
34-
OAuth tokens are session-only — you'll need to re-authorize after disconnecting. For persistent auth, use Application Default Credentials instead.
34+
OAuth tokens are session-only. You'll need to re-authorize after disconnecting. For persistent auth, use Application Default Credentials instead.
3535
</Warning>
3636

3737
## Connection Settings
@@ -120,6 +120,6 @@ Minimum roles:
120120
- No SSH tunneling (HTTPS only to BigQuery API)
121121
- No transactions
122122
- STRUCT/ARRAY columns excluded from UPDATE/DELETE WHERE clauses
123-
- Deep pagination (large OFFSET) scans from start — use filters to narrow results
123+
- Deep pagination (large OFFSET) scans from start. Use filters to narrow results
124124
- No streaming inserts
125125
- OAuth tokens are session-only (re-authorize after disconnect)

docs/databases/clickhouse.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -210,5 +210,5 @@ ORDER BY sum(bytes_on_disk) DESC;
210210

211211
- No foreign keys or multi-statement transactions
212212
- No auto-increment; primary key and sorting key are immutable after creation
213-
- UPDATE/DELETE run as asynchronous background mutations via `ALTER TABLE` — check progress with `SELECT * FROM system.mutations WHERE is_done = 0`
213+
- UPDATE/DELETE run as asynchronous background mutations via `ALTER TABLE`. Check progress with `SELECT * FROM system.mutations WHERE is_done = 0`
214214
- Designed for batch inserts, not single-row writes

docs/databases/cloudflare-d1.mdx

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -213,10 +213,10 @@ D1 uses SQLite's SQL syntax. Key points:
213213

214214
## Known Limitations
215215

216-
- No persistent connections each query is an independent HTTP request with no session state
217-
- No multi-statement transactions each SQL statement auto-commits independently
218-
- No schema editing UI use SQL in the query editor for ALTER TABLE
219-
- 10 GB database limit per D1 database — shard for larger datasets
220-
- API rate limits apply TablePro shows rate limit errors with retry timing
221-
- No bulk import through the plugin use `wrangler d1 execute` with SQL files
222-
- No custom SSL/SSH D1 is HTTPS-only via Cloudflare API
216+
- No persistent connections: each query is an independent HTTP request with no session state
217+
- No multi-statement transactions: each SQL statement auto-commits independently
218+
- No schema editing UI: use SQL in the query editor for ALTER TABLE
219+
- 10 GB database limit per D1 database. Shard for larger datasets
220+
- API rate limits apply. TablePro shows rate limit errors with retry timing
221+
- No bulk import through the plugin: use `wrangler d1 execute` with SQL files
222+
- No custom SSL/SSH: D1 is HTTPS-only via Cloudflare API

docs/databases/overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ Create connection groups by right-clicking in the connection list or using the f
250250

251251
### Nested Groups
252252

253-
Groups support up to 3 levels of nesting. Right-click a group to create a subgroup, move it under another group, or delete it. Deleting a parent removes all subgroups — connections inside are ungrouped, not deleted. The connection form shows the full hierarchy when picking a group.
253+
Groups support up to 3 levels of nesting. Right-click a group to create a subgroup, move it under another group, or delete it. Deleting a parent removes all subgroups. Connections inside are ungrouped, not deleted. The connection form shows the full hierarchy when picking a group.
254254

255255
{/* Screenshot: Connection form showing color picker */}
256256
<Frame caption="Connection color picker and organization">

docs/databases/ssh-tunneling.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -527,4 +527,4 @@ If tunnels still drop:
527527

528528
## Security Best Practices
529529

530-
Use key-based authentication with Ed25519 or RSA 4096+ bits, protect keys with a passphrase, and never expose database ports directly to the internet. SSH Agent (1Password, Secretive, or `ssh-agent`) keeps private keys in a separate process — use it instead of storing passphrases.
530+
Use key-based authentication with Ed25519 or RSA 4096+ bits, protect keys with a passphrase, and never expose database ports directly to the internet. SSH Agent (1Password, Secretive, or `ssh-agent`) keeps private keys in a separate process. Use it instead of storing passphrases.

docs/docs.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,9 @@
4141
"databases/cassandra",
4242
"databases/dynamodb",
4343
"databases/mssql",
44+
"databases/duckdb",
45+
"databases/cloudflare-d1",
46+
"databases/bigquery",
4447
"databases/ssh-tunneling"
4548
]
4649
},

docs/features/data-grid.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ Date, datetime, timestamp, and time columns open a native date picker instead of
105105

106106
### Foreign Key Lookup
107107

108-
Foreign key columns open a searchable dropdown with values from the referenced table (e.g., `1 John Doe`). Type to filter, double-click or press `Enter` to commit. Fetches up to 1,000 values; use the search field to narrow larger sets.
108+
Foreign key columns open a searchable dropdown with values from the referenced table (e.g., `1 - John Doe`). Type to filter, double-click or press `Enter` to commit. Fetches up to 1,000 values; use the search field to narrow larger sets.
109109

110110
{/* Screenshot: Foreign key lookup with search */}
111111
<Frame caption="Foreign key lookup with search">

0 commit comments

Comments
 (0)