Is it possible to use postgres as database instead of mysql or sqlite? For example: $db = new PDO("pgsql:host='$dbhost';dbname=$dbname", $dbuser, $dbpass);
Are there any postgres working examples?
Is there anybody with some experience using postgres in combination with DayPilot?
Solved! The statement I wrote in the original question is correct. The issue was the SQL syntax. I did not use the right syntax for postgres, which is a bit different from SQLite of MySQL.
Great, thanks for posting the solution!