Skip to content

Commit

Permalink
[e] (0) fix xrefs for executeSql()
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.whatwg.org/webapps@1546 340c8d12-0b0e-0410-8428-c7bf67bfef74
  • Loading branch information
Hixie committed May 7, 2008
1 parent 53d9c32 commit 07d86c1
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
12 changes: 6 additions & 6 deletions index
Original file line number Diff line number Diff line change
Expand Up @@ -33227,10 +33227,10 @@ interface <dfn id=sqltransactionerrorcallback>SQLTransactionErrorCallback</dfn>
class=idl>typedef sequence&lt;Object> <dfn id=objectarray>ObjectArray</dfn>;

interface <dfn id=sqltransaction>SQLTransaction</dfn> {
void <span title=dom-sqltransaction-executeSql>executeSql</span>(in DOMString sqlStatement);
void <span title=dom-sqltransaction-executeSql>executeSql</span>(in DOMString sqlStatement, in <a href="#objectarray">ObjectArray</a> arguments);
void <span title=dom-sqltransaction-executeSql>executeSql</span>(in DOMString sqlStatement, in <a href="#objectarray">ObjectArray</a> arguments, in <a href="#sqlstatementcallback">SQLStatementCallback</a> callback);
void <span title=dom-sqltransaction-executeSql>executeSql</span>(in DOMString sqlStatement, in <a href="#objectarray">ObjectArray</a> arguments, in <a href="#sqlstatementcallback">SQLStatementCallback</a> callback, in <a href="#sqlstatementerrorcallback">SQLStatementErrorCallback</a> errorCallback);
void <a href="#executesql" title=dom-sqltransaction-executeSql>executeSql</a>(in DOMString sqlStatement);
void <a href="#executesql" title=dom-sqltransaction-executeSql>executeSql</a>(in DOMString sqlStatement, in <a href="#objectarray">ObjectArray</a> arguments);
void <a href="#executesql" title=dom-sqltransaction-executeSql>executeSql</a>(in DOMString sqlStatement, in <a href="#objectarray">ObjectArray</a> arguments, in <a href="#sqlstatementcallback">SQLStatementCallback</a> callback);
void <a href="#executesql" title=dom-sqltransaction-executeSql>executeSql</a>(in DOMString sqlStatement, in <a href="#objectarray">ObjectArray</a> arguments, in <a href="#sqlstatementcallback">SQLStatementCallback</a> callback, in <a href="#sqlstatementerrorcallback">SQLStatementErrorCallback</a> errorCallback);
};

interface <dfn id=sqlstatementcallback>SQLStatementCallback</dfn> {
Expand All @@ -33242,7 +33242,7 @@ interface <dfn id=sqlstatementerrorcallback>SQLStatementErrorCallback</dfn> {
};</pre>

<p>When the <dfn id=executesql
title=dom-database-executeSql><code>executeSql(<var
title=dom-sqltransaction-executeSql><code>executeSql(<var
title="">sqlStatement</var>, <var title="">arguments</var>, <var
title="">callback</var>, <var title="">errorCallback</var>)</code></dfn>
method is invoked, the user agent must run the following algorithm. (This
Expand Down Expand Up @@ -33798,7 +33798,7 @@ interface <dfn id=sqlstatementerrorcallback>SQLStatementErrorCallback</dfn> {

<p>Authors are strongly recommended to make use of the <code
title="">?</code> placeholder feature of the <code
title=dom-database-executeSql><a
title=dom-sqltransaction-executeSql><a
href="#executesql">executeSql()</a></code> method, and to never construct
SQL statements on the fly.

Expand Down
6 changes: 3 additions & 3 deletions source
Original file line number Diff line number Diff line change
Expand Up @@ -31034,7 +31034,7 @@ interface <dfn>SQLStatementErrorCallback</dfn> {
};</pre>

<p>When the <dfn
title="dom-database-executeSql"><code>executeSql(<var
title="dom-sqltransaction-executeSql"><code>executeSql(<var
title="">sqlStatement</var>, <var title="">arguments</var>, <var
title="">callback</var>, <var
title="">errorCallback</var>)</code></dfn> method is invoked, the
Expand Down Expand Up @@ -31612,8 +31612,8 @@ interface <dfn>SQLStatementErrorCallback</dfn> {

<p>Authors are strongly recommended to make use of the <code
title="">?</code> placeholder feature of the <code
title="dom-database-executeSql">executeSql()</code> method, and to
never construct SQL statements on the fly.</p>
title="dom-sqltransaction-executeSql">executeSql()</code> method,
and to never construct SQL statements on the fly.</p>



Expand Down

0 comments on commit 07d86c1

Please sign in to comment.