4 questions
0 votes
0 answers
71 views
My self hosted remote Nextjs application is unable to connect to my neon database server
My nextjs application is hosted on a remote server ( i own the remote server ) - uses prisma as ORM and neon as database. ERROR DETAILS ( server terminal ): npx prisma migrate deploy Environment ...
2 votes
1 answer
133 views
How to dynamically update only provided fields in PostgreSQL using Neon + TypeScript + Zod schema?
I’m working on a Node.js/Express backend using PostgreSQL (Neon serverless), TypeScript, and Zod for validation. I have a Students table with columns: id UUID PRIMARY KEY, firstName TEXT NOT NULL, ...
0 votes
0 answers
163 views
Why is it showing Invalid URL error while trying to connect a Neon Database with Drizzle ORM?
While trying to connect a Neon Database and DrizzleORM, my next.js program was reflecting an error while trying to run "npx drizzle-kit push". Warning '@neondatabase/serverless' can only ...
-1 votes
1 answer
78 views
flush I/O in Vercel beforeExit in node.js
I am trying to flush out all pending IO using 'beforeExit' like this: process.once('beforeExit', async (code) => { await Promise.race([ new Promise(r => setTimeout(r, 3000), ...