TE
科技回声
首页
24小时热榜
最新
最佳
问答
展示
工作
中文
GitHub
Twitter
首页
Show HN: A Kotlin/JVM database client for those who want to write SQL
2 点
作者
be-hase
11 个月前
It is implemented for those who like to write SQL directly. Using the Kotlin compiler plugin, I achieve binding parameters using string interpolation.
1 comment
ttymck
11 个月前
In the example<p>``` status = $status """ if (vip != null) { +"vip = $vip" } ```<p>Does that concatentation automatically add the "AND" to combine the where clauses? How does it know the vip bit is a where clause?