On Tue, 09 Feb 2010 02:37:01 +0100, Eric Westenberger <eric.westenber...@googlemail.com> wrote:
I noticed a slight inconsistency in the Web SQL Database Spec on
http://dev.w3.org/html5/webdatabase/Overview.html (version Feb 04, 2010)

The example in section 1 does not match to the API description in the
following sections.
E.g. consider the lines

db.readTransaction(function (t) {
t.executeSql('SELECT COUNT(*) AS c FROM docids', [], function (t, r) {
      span.textContent = r.rows[0].c;

However, in Section 4.5 the API specifies that the rows are addressed via

r.rows.item(i)

Because of the binding defined both will work.


--
Anne van Kesteren
http://annevankesteren.nl/

Reply via email to