From Java, I\'m calling a prepared statement in Postgresql with an insert that has a RETURNING clause for my identity column. In PG admin it comes right back, but not sure
Calling executeUpdate() expects no result from statement. Call stmt.execute() and then stmt.getResultSet()
executeUpdate()