Home > Software design >  How to call functions/procedures from Oracle Database using Kotlin Exposed?
How to call functions/procedures from Oracle Database using Kotlin Exposed?

Time:10-05

So I've been using Kotlin with Spring Boot for quite some times and I recently found "Ktor" and "Exposed"

And I decided to give it a try, still stuck with the function calling since we (developers) have functions and/or stored procedures on the Oracle Database to call

So as the topic says, using Exposed, how to call functions and/or procedures?

Many Thanks!

CodePudding user response:

You always can execute any "raw" sqls with Transaction.exec function (faq), but also it's possible to define your own functions to use it later in Exposed DSL (wiki)

  • Related