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 looked at the openDatabase function
openDatabase
function openDatabase(name, version, description, size, callback) {}
and it seems it has one callback parameter which is used either on success or on failure.
On the other hand at test/app.js openDatabase is used as if it has different onSucces and onFailure callbacks.
test/app.js
db = SQLite.openDatabase( database_name, database_version, database_displayname, database_size, this.openCB, this.errorCB )
It looks like react-native-sqlite-2 becomes incompatible with react-native-sqlite-storage.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I looked at the
openDatabase
functionand it seems it has one callback parameter which is used either on success or on failure.
On the other hand at
test/app.js
openDatabase is used as if it has different onSucces and onFailure callbacks.It looks like react-native-sqlite-2 becomes incompatible with react-native-sqlite-storage.
The text was updated successfully, but these errors were encountered: