Andrey.Tarashevskiy
Andrey.Tarashevskiy
@AdityaAnand1 , yes it's the next thing in our roadmap. But it will be released as an experimental first to gather feedback.
Hi everyone in this thread. I started to implement support for working with simple classes without defining tables and inherit from `Entity`. Before I'll publish some experimental module I want...
@V3lop5 , I was able to run db2 tests but most of them fail. Please apply my [patch](https://gist.github.com/Tapac/116d42aa3907f9a55ef87c14d2a8ea27) and then try to fix them as I don't know the DB2...
Should be fixed in pair with #186
Workaround is to implement this locally with help of "ON DUPLICATE KEY UPDATE": ```Kotlin class BatchInsertUpdateOnDuplicate(table: Table, val onDupUpdate: List): BatchInsertStatement(table, false) { override fun prepareSQL(transaction: Transaction): String { val...
Please check the `Table.replace` function. Is it the same as upsert?
@lamba92 Do you have any suggestion about how I could test Exposed against android sqlite?
@jnfeinstein , if you mean the location of tests I guess `org/jetbrains/exposed/sql/tests/shared/ddl` in `exposed-tests` would be nice.
1. Please check that SO thread https://stackoverflow.com/questions/10797794/multiple-queries-executed-in-java-in-single-statement maybe it helps you. 2. You should not call `START TRANSACTION / COMMIT` as jdbc driver will do the same thing for you...
I'm not sure what driver spigot uses to work with SQlite but looks like it's not ['xerial/sqlite-jdbc'](https://github.com/xerial/sqlite-jdbc), most likely it's https://github.com/redbooth/sqlite-jdbc as there is no `org.sqlite.PrepStmt` class im Xerial but...