Hi, I'm new to scalikejdbc and I'[m trying to figure out how I can run arbitrary SQL statements as strings, then take the results and transform them into a list or seq of Maps.
Something like:
implicit session: DBSession =>
SQL(s"${query}")
.map(???)
.list
.apply()
I'm using scalikejdbc for a few different purposes, and this particular use case is to run some sql and save the results to an excel file or csv.
Is this something scalike can do easily?
Thanks for any insight.