Re: [JDBC] JDBC drive 42 release breaks seriously for RETURNING?
От | Tom Smith |
---|---|
Тема | Re: [JDBC] JDBC drive 42 release breaks seriously for RETURNING? |
Дата | |
Msg-id | CAKwSVFFjEL+0TMS22jZFQvr7A79u9KP0dXScFrAOOtrKB9_9ZQ@mail.gmail.com обсуждение исходный текст |
Ответ на | Re: [JDBC] JDBC drive 42 release breaks seriously for RETURNING? (Tom Smith <tomsmith1989sk@gmail.com>) |
Список | pgsql-jdbc |
Also, pg server 9.4
On Sat, Jun 17, 2017 at 7:14 PM, Tom Smith <tomsmith1989sk@gmail.com> wrote:
I was using jar from maven 42.1.1On Sat, Jun 17, 2017 at 6:25 PM, Dave Cramer <pg@fastcrypt.com> wrote:I just tested this:public class TestReturning {
public static void main(String[] args) throws Exception {
try(Connection c = DriverManager.getConnection("jdbc:postgresql://localhost:543 2/test", "test", "");
Statement stmt = c.createStatement())
{
stmt.execute("create table if not exists transportation_point(id serial primary key, address text, returning_allowed bool)");
try (
PreparedStatement ps3 = c.prepareStatement("insert into transportation_point values (nextval('transportation_point_id_seq'), 'foo')", new String[]{"id"} )) {
ps3.executeUpdate();
ResultSet rs3 = ps3.getGeneratedKeys();
if (rs3.next()) {
System.out.println("New Id: " + rs3.getInt(1));
}
else {
throw new RuntimeException("No Generated Keys for ps3");
}
}
finally {
stmt.execute("drop TABLE transportation_point");
stmt.close();
}
}
}
}and it worked fine. This is using the latest code from githubOn 17 June 2017 at 16:53, Dave Cramer <pg@fastcrypt.com> wrote:Certainly not intended. Thanks for the report!On 17 June 2017 at 16:40, Tom Smith <tomsmith1989sk@gmail.com> wrote:pstmt.executeUpdate()Something like belowsqlInsert = "insert into aTable ((select nextval()), "stringdata")
pstmt connection.prepareStatement(sqlInsert, new String[]{"id"})
resultSet = pstmt.getGeneratedKeys() ---> resultset is empty using 42 series, but one row returned using 94. seriesOn Sat, Jun 17, 2017 at 2:58 PM, Jorge Solórzano <jorsol@gmail.com> wrote:Hello Tom:
Could you please provide an example code that reproduce the issue?Jorge SolórzanoOn Sat, Jun 17, 2017 at 10:38 AM, Tom Smith <tomsmith1989sk@gmail.com> wrote:I downgraded to 9.4 drive and it worked again. It is a bit shocking.I just upgraded to 42 series latest, it is not getting the resultset anymore.Hello:and get the expected resultset after insertion using 9.4 series driver.
I have a working call using
connection.prepareStatement(sqlInsert, generatedIds) Is it a bug or change?Thanks
В списке pgsql-jdbc по дате отправления: