scalikejdbc-async
scalikejdbc-async copied to clipboard
ScalikeJDBC Extension: Non-blocking APIs in the JDBC way
Hi, First, thanks for this early integration of async drivers. I'm trying to test my model with specs2 and I don't find a way to make an auto rollback trait....
First of all, thank you for this library. I have a suggestion for supporting additional jasync config parameters. Maybe AsyncConnectionSettings.scala can be updated like so: case class AsyncConnectionPoolSettings( maxPoolSize: Int...
- https://yusuke.blog/2021/03/18/2947 - https://twitter.com/yamadamn/status/1372047711998930950 - https://bugs.java.com/bugdatabase/view_bug.do?bug_id=JDK-8202343 https://github.com/scalikejdbc/scalikejdbc-async/runs/2531693706?check_suite_focus=true#step:5:186 ``` he last packet successfully received from the server was 1 milliseconds ago. The last packet sent successfully to the server was 1...
I was using scalikejdbc-sync and now i want to use scalikejdbc-async. I have added "org.scalikejdbc" %% "scalikejdbc-async" % "0.14.+", "com.github.jasync-sql" % "jasync-mysql" % "1.1.+" to my dependencies I am trying...
Would it be interesting to implement a special pass-through parameter to set an isolation level for a transaction? Right now, it's possible to set an isolation level in scalikejdbc, but...
`AsyncDBSession` does `queryLogging` upfront and does not include query duration like `StatementExecutor` does. It looks like a wrong implementation. Or is there a specific reason to it? `queryLogging` does use...
- https://github.com/scalikejdbc/scalikejdbc/commit/7f3f95646da746be3dbcc920f28c700a2d281f4c - https://github.com/scalikejdbc/scalikejdbc/pull/954
Could you please release plugin with scala 2.12 support
val codinatorSQL = sqls.eq(**cod.createdDate**, DateTime.now().toString("yyyy-MM-dd")) Im generating a sqlsyntax and pass over error show Retriving Group Failed.com.mysql.jdbc.exceptions.jdbc4.MySQLIntegrityConstraintViolationException: Column 'created_date' in where clause is ambiguous But if i use it direct...