-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Fatal error using try! #430
New issue
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
Comments
I'm seeing the same thing occur. I'm crashing while iterating through the results. @Silve2611 did this change work for you? |
Just the change above alone to next() seems to do it in my short time testing however I'm sure the other changes are beneficial. I'll go through some more testing and take a look at the other PR's to see if I need to branch or hold off. |
Yes you are right. I had to modify the next() method to solve this. I helped myself by rewriting the statement function
|
fixed in 5a9b583 |
As already mentioned in #339 the try! will cause a program to crash if multiple programs access the database at the same time.
This is not only happening when using Scalar but also when using
The reason behind it is the Generator type
My solution for it is the following change but i couldn't test yet if it is really working
The text was updated successfully, but these errors were encountered: