In pgadmin3, I would like to use parameterized queries (to faster debugging, just copy & paste the query from my php file). But I haven\'t found an option to add the values
In DBeaver you can use parameters in queries just like you can from code, so this will work:
select * from accounts where id = :accountId
When you run the query DBeaver will ask you for the value for :accountId and run the query.