We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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 to setup a connection pool using
val ds: HikariDataSource = { // read from config file } AsyncConnectionPool.singleton(ds.getJdbcUrl, ds.getUsername, ds.getPassword) val query = SQLSyntax.createUnsafely(filteredQuery) val result = AsyncDB.localTx { implicit tx => sql"$query" .map(rs => rs.long(1)) .single() .future() }
but I get
Message: Error 1059 - #42000 - Identifier name is too long The is nothing but my JDBC URL. Is this a bug in the library ?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I was using scalikejdbc-sync and now i want to use
scalikejdbc-async.
I have added
to my dependencies
I am trying to setup a connection pool using
but I get
Message: Error 1059 - #42000 - Identifier name is too long
The is nothing but my JDBC URL.
Is this a bug in the library ?
The text was updated successfully, but these errors were encountered: