-
Notifications
You must be signed in to change notification settings - Fork 0
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
"generateAsync = true" doesn't work #113
Comments
Will have to add. PRs welcome! I am curious about your setup, though. Do you have JS targets for your project? The only reason for using |
@05nelsonm I don't have any JS/Web target in my project. What I'm trying to achieve here is to get coroutine support (suspend functions) for insert, update and delete statements (plus transactions). With the current support for flows, I could only apply it to my queries. I thought Please let me know if I'm missing anything here and the support is already there for having suspend insert/update/delete/transaction statements. |
So the If you do not have js/web targets, set Again, contributions via PRs are always welcomed! |
When I enable async in the database definition in my build file, I can't get my code compiled because an async version of
Database.schema
is generated andSQLiteMCDriver.Factory(...)
doesn't accept any such schema.The text was updated successfully, but these errors were encountered: