hi everyone, I'm using exposed 0.55 version. I wou...
# exposed
f
hi everyone, I'm using exposed 0.55 version. I would like to map an Oracle table that has a column with a reserved word (DATE). I am mapping it in my IDTable class as follows:
Copy code
val data = datetime("date")
but when I execute an INSERT in that table from my Kotlin app I have the following exception: ORA-00904: "date": identifier not valid the query generated is INSERT INTO MYTABLE("date", COL1, COL2...) VALUES (val1, val2...) how can I correctly map a column named with a reserved word? Thanks all!