You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello, this driver for Kysely currently does not support changing the isolation level, which can be done using Kysely's TransactionBuilder.setIsolationLevel() method.
The name of isolation level placed in the object { isolationLevel: '...' } is passed by Kysely to the method PlanetScaleDriver.beginTransaction as a second parameter (usually named "settings").
In this case, it should be further passed to the PlanetScaleConnection.beginTransaction and used there, for example, in such a way:
Hello, this driver for Kysely currently does not support changing the isolation level, which can be done using Kysely's
TransactionBuilder.setIsolationLevel()
method.The name of isolation level placed in the object
{ isolationLevel: '...' }
is passed by Kysely to the methodPlanetScaleDriver.beginTransaction
as a second parameter (usually named "settings").In this case, it should be further passed to the
PlanetScaleConnection.beginTransaction
and used there, for example, in such a way:The text was updated successfully, but these errors were encountered: