Hi, I am trying out Exposed for a practice project...
# exposed
c
Hi, I am trying out Exposed for a practice project. This might be a silly question but what SQL vendor support
RETURNING
clause? I am using the
insertReturning
DSL and I got
There's no generic SQL for a command with a RETURNING clause. There must be a vendor specific implementation., dialect: H2.
. I checked the documentation but found nothing about ``insertReturning`` . So what other vendors can I use?
Actually SQLite is a good alternative of H2 with
RETURNING
clause support
c
Hi @CXwudi Exposed currently supports 7 databases. Out of those,
RETURNING
is supported by: SQLite (as you found) and PostgreSQL.
1