Database Does Not Exist Error in PostgreSQL
Why This Error Happens
This error appears when connecting to a database that is not present on the PostgreSQL server.
Check Available Databases
\l
Create Database
CREATE DATABASE mydatabase;
Connection String
Verify that your connection string references the correct database name.