Note to self: if you want PostgreSQL to accept your non-lowercase database name, enclosure its name with quotes
The following creates the database frustratingerror
:
CREATE DATABASE FrustratingError;
The following creates the database FrustratingError
:
CREATE DATABASE "FrustratingError";