| Index: lib/dom/dom.dart
|
| diff --git a/lib/dom/dom.dart b/lib/dom/dom.dart
|
| index ee0de7e916aac8aaf2539f0d53e31a25cfe72ed3..4ea40cd4d3ae5be99ffa0eaec77f908b6219c9c7 100644
|
| --- a/lib/dom/dom.dart
|
| +++ b/lib/dom/dom.dart
|
| @@ -7165,6 +7165,8 @@ typedef bool SQLStatementErrorCallback(SQLTransaction transaction, SQLError erro
|
| // WARNING: Do not edit - generated code.
|
|
|
| interface SQLTransaction {
|
| +
|
| + void executeSql(String sqlStatement, List arguments, [SQLStatementCallback callback, SQLStatementErrorCallback errorCallback]);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
| @@ -7187,6 +7189,8 @@ typedef bool SQLTransactionErrorCallback(SQLError error);
|
| // WARNING: Do not edit - generated code.
|
|
|
| interface SQLTransactionSync {
|
| +
|
| + SQLResultSet executeSql(String sqlStatement, List arguments);
|
| }
|
| // Copyright (c) 2012, the Dart project authors. Please see the AUTHORS file
|
| // for details. All rights reserved. Use of this source code is governed by a
|
|
|