Snippets tagged “postgresql”
3 snippets use this tag.
- Laravel: Error [PDOException]: Could not Find Driver in PostgreSQLPHP
It looks like you are trying to connect to a PostgreSQL database from your Laravel application, but the PDO (PHP Data Objects) extension is not installed or enabled in your PHP environment.
- pg_config executable not foundPython
Check the location of pg_config: Open a terminal and run the command "which pg_config".
- postgresql insert null value on queryPHP
To insert a NULL value into a PostgreSQL database table column using PHP, you can use the NULL keyword in your INSERT query.