Hi guys. I have started coding in Ktor.
I need some good SQL query
builder (not ORM) to create table and update columns in runtime. Since
Exposed is statically typed, they don't support adding columns in
runtime and also querying things in run time (where I don't know which
column I am going to query in the first place).
Is there any good library which will reduce my pain of writing raw SQL queries and help me to reduce human error?
I have found
https://github.com/darkredz/Zeko-SQL-Builder . This does not support creating or updating the table schema.