Hi, I'm using Hyperdrive + Neon + Drizzle, and I've an issue: I've to connect a new connection (const db = drizzle()...) for each query, in the same "request/worker" execution. When I not use Hyperdrive, I can have a singleton of drizzle and do multiples queries.
I'm use thats imports:
import { drizzle, NodePgDatabase } from "drizzle-orm/node-postgres";
Any ideas?