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
The following API calls are now deprecated and scheduled to be removed in the near future:
db.transaction()
db.readTransaction()
db.beginTransaction()
This is needed to support the Browser platform ref: storesafe/cordova-sqlite-evcore-extbuild-free#11 and avoid a number of other problems discussed in storesafe/cordova-sqlite-storage#690.
It is recommended to use the following calls instead: To clarify: it is recommended to use the following calls in general:
db.executeSql()
db.sqlBatch()
NOTE that the db.sqlBatch() call is still not supported by this plugin version, will be added by merge in the near future ref: #4
The text was updated successfully, but these errors were encountered:
README.md add NOTICE of deprecated API calls
e847a4a
ref: #5
No branches or pull requests
The following API calls are now deprecated and scheduled to be removed in the near future:
db.transaction()
anddb.readTransaction()
)db.beginTransaction()
)This is needed to support the Browser platform ref: storesafe/cordova-sqlite-evcore-extbuild-free#11 and avoid a number of other problems discussed in storesafe/cordova-sqlite-storage#690.
It is recommended to use the following calls instead:
To clarify: it is recommended to use the following calls in general:
db.executeSql()
to read data or execute a single statementdb.sqlBatch()
to execute a batch of modification statements within an ACID (atomic, failure-safe) transactionNOTE that the
db.sqlBatch()
call is still not supported by this plugin version, will be added by merge in the near future ref: #4The text was updated successfully, but these errors were encountered: