Vercel Postgress Error Codes
This section focuses on errors that can happen while using the Vercel Postgres SDK to interact with your Vercel Postgres store.ReplyError: invalid_connection_string
Your postgres client was not able to connect to your Postgres store. This error happens if you provided the wrong type of connection string to a connection method.
For example, you passed a non pooling postgres URL to the createPool
method which expects a postgres URL that includes pooling.
- Check that your connection string does not have a typo, or that it is associated with the correct type of connection (direct or pooled)
ReplyError: missing_connection_string
Your postgres client was not able to connect to your Postgres store. This error happens if you did not provide a connection string when using a method that creates a connection with your Postgres store.
- Check that you used the correct parameter name for the connection string.
ReplyError: kysely_transactions_not_supported
This error happens if you tried to use the transactions feature with the Kysely client. The Neon package does not support transactions.
ReplyError: kysely_streaming_not_supported
This error happens if you tried to use the streaming feature with the Kysely client. The Neon package does not support streaming.