vertx-sql-client
vertx-sql-client copied to clipboard
Adding "native returning" for PostgreSQL
Are you planning to add "native returning" for PostgreSQL?
can you clarify @estet90 ?
If I use Jooq, I can make request like
INSERT INTO test (name) VALUE 'name'
and get generated id.
If I use VertX, I have to write
INSERT INTO test (name) VALUE 'name' RETURNING id