PostgreSQL Hint: You will need to rewrite or cast the expression. column "state" is of type status but expression is of type character varying

Gatiivs :

I am trying to create a SQL statement using java. The problem is I am using

 stmt.setString(9, ev.getState().status());

for a variable I am trying to insert into a SQL column of type status

 CREATE TYPE STATUS AS ENUM ('APPROVED', 'CLOSED','STARTED', 'WAITING');

It is throwing me an exception of

column "state" is of type status but expression is of type character varying
Hint: You will need to rewrite or cast the expression.

Did I make a mistake or do I actually need to cast the value in sql? If yes, how does one cast in this situation?

Full Statement:

     PreparedStatement stmt = conn.prepareStatement("INSERT INTO Event (EventNum, EventName, startHour, endHour, startMin, endMin, startDate, endDate, State, depName) VALUES (?, ?, ?, ?, ?, ?, ?::date, ?::date, ?, ?)");




     stmt.setInt(1, ev.getEventNum());
     stmt.setString(2, ev.getName());
     stmt.setInt(3, ev.getStartHour());
     stmt.setInt(4, ev.getEndHour());
     stmt.setInt(5, ev.getStartMinute());
     stmt.setInt(6, ev.getEndMinute());
     stmt.setString(7, ev.getStartYear() + "-" + ev.getStartMonth() + "-" + ev.getStartDate());
     stmt.setString(8, ev.getEndYear() + "-" + ev.getEndMonth() + "-" + ev.getEndDate());
     stmt.setString(9, ev.getState().status());
     stmt.setString(10, ev.getDepartment());



     stmt.executeUpdate();
Pavel Stehule :

You are using Prepared Statements - PostgreSQL get info from client side, so parameter is varchar because you are using setString method. You should to inform Postgres, so input datatype is different with explicit cast.

PreparedStatement stmt = conn.prepareStatement(
  "INSERT INTO Event (EventNum, EventName, startHour, endHour, startMin, endMin, startDate, endDate, State, depName)
               VALUES (?, ?, ?, ?, ?, ?, ?::date, ?::date, ?::status, ?)");

All data are passed in text form (it is default) - so there are not a problem with passed values. PostgreSQL uses strict type system - and without explicit casting don't allow cast from varchar to date, enum, int, ...

Guess you like

Origin http://10.200.1.11:23101/article/api/json?id=436776&siteId=1