create table "my_table" ( "id" int4 primary key generated always as identity, "created_time" TIMESTAMP WITHOUT TIME ZONE not null default current_timestamp, "created_by" text not null ); ERROR ...
When I use java.sql.Timestamp value with PreparedStatement#setObject, PreparedStatement#executeUpdate throws an exception. It probably happens due to the conversion: driver converts the value to the ...