I would like to read the current timestamp from the PostgreSQL database with the following query:
select now();
I use the following PG driver: postgresql-9.4.1212
I execute the statment as prepared statement.
Multiple calls of the above mentioned prepared statements always return the same value, so the query seems to be cached somewhere/somehow.
How could I accomplish that the query gets executed physically on the database every time?