Skip to content

Commit dd83fff

Browse files
authored
d1: link getting started (#23050)
* d1: link getting started D1 database binding instructions are in the Getting Started page * d1/limits: fmt Position free and paid qualifiers uniformly across the limits table
1 parent 41f4c8b commit dd83fff

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/content/docs/d1/platform/limits.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ import { Render, Details } from "~/components";
1515
| Maximum storage per account | 250 GB (Workers Paid)[^1] / 5 GB (Free) |
1616
| [Time Travel](/d1/reference/time-travel/) duration (point-in-time recovery) | 30 days (Workers Paid) / 7 days (Free) |
1717
| Maximum Time Travel restore operations | 10 restores per 10 minute (per database) |
18-
| Queries per Worker invocation (read [subrequest limits](/workers/platform/limits/#how-many-subrequests-can-i-make)) | 50 (Free) / 1000 (Paid) |
18+
| Queries per Worker invocation (read [subrequest limits](/workers/platform/limits/#how-many-subrequests-can-i-make)) | 1000 (Workers Paid) / 50 (Free) |
1919
| Maximum number of columns per table | 100 |
2020
| Maximum number of rows per table | Unlimited (excluding per-database storage limits) |
2121
| Maximum string, `BLOB` or table row size | 2,000,000 bytes (2 MB) |
@@ -69,4 +69,4 @@ Note that the 10 GB limit of a D1 database cannot be further increased.
6969

7070
You can open up to six connections (to D1) simultaneously for each invocation of your Worker.
7171

72-
For more information on a Worker's simultaneous connections, refer to [Simultaneous open connections](/workers/platform/limits/#simultaneous-open-connections).
72+
For more information on a Worker's simultaneous connections, refer to [Simultaneous open connections](/workers/platform/limits/#simultaneous-open-connections).

src/content/docs/d1/worker-api/index.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ import { DirectoryListing, Details, Steps } from "~/components";
99

1010
You can execute SQL queries on your D1 database from a Worker using the Worker Binding API. To do this, you can perform the following steps:
1111

12-
1. [Bind the D1 Database](/d1/worker-api/d1-database).
12+
1. [Bind the D1 Database](/d1/get-started/#3-bind-your-worker-to-your-d1-database).
1313
2. [Prepare a statement](/d1/worker-api/d1-database/#prepare).
1414
3. [Run the prepared statement](/d1/worker-api/prepared-statements).
1515
4. Analyze the [return object](/d1/worker-api/return-object) (if necessary).

0 commit comments

Comments
 (0)