Bạn đã thử truyền cột thành enum chưa?
// Setup stuff up here.
sql = "INSERT INTO foo (suit) VALUES (?::card_suit)";
st.setString(1, 'spades');
st.executeUpdate(sql);
Giải thích trong Chuyển đổi giữa Java enums và PostgreSQL enums bài viết về 'Một blog viết mã web' với các mẫu:
INSERT INTO pet (pet_id, pet_type, name)
VALUES (?, CAST(? AS animal_type), ?);
--or
INSERT INTO pet (pet_id, pet_type, name)
VALUES (?, ?::animal_type, ?);