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 am inserting a few rows concurrently (using scala future, 100 queries) and I am getting the following ErrorToken:
ErrorToken
[2024-01-16 10:40:58,815] [DEBUG] [io.r2dbc.mssql.client.ReactorNettyClient] [] [] [reactor-tcp-nio-6] - [cid: 0x11] Response: ErrorToken [number=8179, state=4, infoClass=16, message='Could not find prepared statement with handle 2.", serverName='ad4bc1cf0cd2", procName='", lineNumber=16777216]
I am using 1.0.2-RELEASE and preferCursoredExecution=false.
1.0.2-RELEASE
preferCursoredExecution=false
The text was updated successfully, but these errors were encountered:
This is how to reproduce it:
git clone [email protected]:sebastian-alfers/akka-persistence-r2dbc.git cd akka-persistence-r2dbc git checkout mssql-support-2nd docker compose -f docker/docker-compose-sqlserver.yml up -d sbt -Dconfig.resource=application-sqlserver.conf test
It uses sbt and scala.
sbt
Changing the dependency can be done here and settings here.
Sorry, something went wrong.
It seems to make a difference when the root log level and / or the io.r2dbc.mssql.QUERY to INFO (where it works) or DEBUG (where it fails).
io.r2dbc.mssql.QUERY
INFO
DEBUG
Change can be done here to trigger the error.
No branches or pull requests
I am inserting a few rows concurrently (using scala future, 100 queries) and I am getting the following
ErrorToken
:I am using
1.0.2-RELEASE
andpreferCursoredExecution=false
.The text was updated successfully, but these errors were encountered: