Hey. Fairly new to kotlin in general, got an oddit...
# exposed
m
Hey. Fairly new to kotlin in general, got an oddity: I can query with
table.selectAll()
just fine. Trying to SELECT WHERE (as in
table.select(table.columname eq foobar)
), I get
Unresolved reference: eq
. What am I missing?
t
You should use :
table.select {}
instead of
table.select()