also, which driver do you recommend using with hyperdrive? Are you using postgres.js yourself as wel
also, which driver do you recommend using with hyperdrive? Are you using postgres.js yourself as well, instead of the serverless driver of neon?




wrangler hyperdrive create <ID> [OPTIONS] but its not <ID> its <NAME>wrangler hyperdrive update <ID> [OPTIONS] it is actually the ID, that was created before. pg DB directly from Pages now, as shown possible in this recent announcement here: https://blog.cloudflare.com/more-npm-packages-on-cloudflare-workers-combining-polyfills-and-native-code/Recommended Create aenvironmental variable with the connection string of your database. <BINDING_NAME> is the name of the binding assigned to your Hyperdrive in your wrangler.toml or Pages configuration. This allows you to avoid committing potentially sensitive credentials to source control in your wrangler.toml, if your test/development database is not ephemeral. If you have configured multiple Hyperdrive bindings, replace <BINDING_NAME> with the unique binding name for each.WRANGLER_HYPERDRIVE_LOCAL_CONNECTION_STRING_<BINDING_NAME>

Worker<->Hyperdrive<->Database. What flow would them talking to each other look like?