You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds or updates multiple [=object-store/records=] in |store| with the given array of |values|.
@@ -2901,7 +2901,7 @@ and false otherwise.
2901
2901
If any [=/record=] fails to be stored, no updates will be made and the |request| will fail, with |request|'s {{IDBRequest/error!!attribute}} set to an error e.g. a "{{ConstraintError}}" {{DOMException}}.
Adds or updates multiple [=object-store/records=] in |store| with the given array of |entries|. Each entry is a two element array with a [=/key=] and [=/value=] for the record.
@@ -3008,11 +3008,11 @@ To <dfn>add or put a single record</dfn> with |handle|, |value|, |key|, and |no-
3008
3008
3009
3009
</div>
3010
3010
3011
-
The <dfn method for=IDBObjectStore>putAllValues(|values|)</dfn> method steps are to return the result of running [=add or put multiple records=] with [=/this=], |values|, and false.
3011
+
The <dfn method for=IDBObjectStore>putValues(|values|)</dfn> method steps are to return the result of running [=add or put multiple records=] with [=/this=], |values|, and false.
3012
3012
3013
3013
<div algorithm>
3014
3014
3015
-
The <dfn method for=IDBObjectStore>putAllEntries(|entries|)</dfn> method steps are:
3015
+
The <dfn method for=IDBObjectStore>putEntries(|entries|)</dfn> method steps are:
3016
3016
3017
3017
1. Let |keys| be a new [=/list=].
3018
3018
@@ -3072,7 +3072,7 @@ To <dfn>add or put multiple records</dfn> with |handle|, |values|, |no-overwrite
3072
3072
3073
3073
1. [=list/Append=] |r| to |rs|.
3074
3074
3075
-
1. Let |keys| be |rs|.
3075
+
1. Set |keys| to |rs|.
3076
3076
3077
3077
1. Let |targetRealm| be a user-agent defined [=ECMAScript/Realm=].
3078
3078
@@ -6861,7 +6861,7 @@ For the revision history of the second edition, see [that document's Revision Hi
* Used [[infra]]'s list sorting definition. ([Issue #346](https://github.com/w3c/IndexedDB/issues/346))
6863
6863
* Added a definition for [=transaction/live=] transactions, and renamed "run an upgrade transaction" to [=/upgrade a database=], to disambiguate "running". ([Issue #408](https://github.com/w3c/IndexedDB/issues/408))
6864
-
* Added {{IDBObjectStore/putAllValues()}} and {{IDBObjectStore/putAllEntries()}} methods. ([Issue #69](https://github.com/w3c/IndexedDB/issues/69))
6864
+
* Added {{IDBObjectStore/putValues()}} and {{IDBObjectStore/putEntries()}} methods. ([Issue #69](https://github.com/w3c/IndexedDB/issues/69))
0 commit comments