-
Notifications
You must be signed in to change notification settings - Fork 11
Sqlite Prototype #43
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
Sqlite Prototype #43
Conversation
* Custom requests for execute in transactions * Clean up js to dart * remove requirement for checking SQL statements when checking autocommit --------- Co-authored-by: Steven Ontong <steven@journeyapps.com>
} | ||
|
||
// Web and native have different requirements for `sqlitePaths`. | ||
void generateSourceTableTests(List<String> sqlitePaths, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
can this not be extracted into a test_utils or something since it's used elsewhere?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's only currently used for the watch tests. I don't think it's currently necessary in other tests.
Description
This is an extension of #27 where the prototype is extended with some internal changes.
Drift
Drift was previously used to spawn SQLite database connections via different configurations of web workers.
The dependency for the
Drift
package is now removed in favour of using the newsqlite3_web
package. A new implementation forWebDatabase
is used for SQL database connections on web.