-
Notifications
You must be signed in to change notification settings - Fork 10.2k
[hyperdrive] Update Get Started to use pg #22982
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -44,8 +44,8 @@ Hyperdrive uses Workers [TCP socket support](/workers/runtime-apis/tcp-sockets/# | |
|
|
||
| | Driver | Documentation | Minimum Version Required | Notes | | ||
| | ---------------------------------------------------------- | ------------------------------------------------------------------------ | ------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------ | | ||
| | node-postgres - `pg` (recommended) | [node-postgres - `pg` documentation](https://node-postgres.com/) | `[email protected]` | `8.11.4` introduced a bug with URL parsing and will not work. `8.11.5` fixes this. Requires `compatibility_flags = ["nodejs_compat"]` and `compatibility_date = "2024-09-23"` - refer to [Node.js compatibility](/workers/runtime-apis/nodejs). Requires wrangler `3.78.7` or later. | | ||
| | Postgres.js | [Postgres.js documentation](https://github.com/porsager/postgres) | `[email protected]` | Supported in both Workers & Pages. | | ||
| | node-postgres - `pg` | [node-postgres - `pg` documentation](https://node-postgres.com/) | `[email protected]` | `8.11.4` introduced a bug with URL parsing and will not work. `8.11.5` fixes this. Requires `compatibility_flags = ["nodejs_compat"]` and `compatibility_date = "2024-09-23"` - refer to [Node.js compatibility](/workers/runtime-apis/nodejs). Requires wrangler `3.78.7` or later. | | ||
| | Drizzle | [Drizzle documentation](https://orm.drizzle.team/) | `0.26.2`^ | | | ||
| | Kysely | [Kysely documentation](https://kysely.dev/) | `0.26.3`^ | | | ||
| | [rust-postgres](https://github.com/sfackler/rust-postgres) | [rust-postgres documentation](https://docs.rs/postgres/latest/postgres/) | `v0.19.8` | Use the [`query_typed`](https://docs.rs/postgres/latest/postgres/struct.Client.html#method.query_typed) method for best performance. | | ||
|
|
@@ -68,18 +68,18 @@ The following examples show you how to: | |
| 2. Pass the Hyperdrive connection string and connect to the database. | ||
| 3. Query your database via Hyperdrive. | ||
|
|
||
| ### Postgres.js | ||
|
|
||
| The following Workers code shows you how to use [Postgres.js](https://github.com/porsager/postgres) with Hyperdrive. | ||
|
|
||
| <Render file="use-postgres-js-to-make-query" product="hyperdrive" /> | ||
|
|
||
| ### node-postgres / pg | ||
|
|
||
| Install the `node-postgres` driver: | ||
|
|
||
| <Render file="use-node-postgres-to-make-query" product="hyperdrive" /> | ||
|
|
||
| ### Postgres.js | ||
|
|
||
| The following Workers code shows you how to use [Postgres.js](https://github.com/porsager/postgres) with Hyperdrive. | ||
|
|
||
| <Render file="use-postgres-js-to-make-query" product="hyperdrive" /> | ||
|
|
||
| ## Identify connections from Hyperdrive | ||
|
|
||
| To identify active connections to your Postgres database server from Hyperdrive: | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.