| OLD | NEW |
| 1 /** |
| 2 * An API for storing data in the browser that can be queried with SQL. |
| 3 * |
| 4 * **Caution:** this specification is no longer actively maintained by the Web |
| 5 * Applications Working Group and may be removed at any time. |
| 6 * See [the W3C Web SQL Database specification](http://www.w3.org/TR/webdatabase
/) |
| 7 * for more information. |
| 8 * |
| 9 * The [dart:html.Storage] or [dart:indexed_db] APIs are recommended |
| 10 * alternatives. |
| 11 */ |
| 1 library dart.dom.web_sql; | 12 library dart.dom.web_sql; |
| 2 | 13 |
| 3 import 'dart:async'; | 14 import 'dart:async'; |
| 4 import 'dart:collection'; | 15 import 'dart:collection'; |
| 5 import 'dart:html'; | 16 import 'dart:html'; |
| 6 import 'dart:html_common'; | 17 import 'dart:html_common'; |
| 7 import 'dart:nativewrappers'; | 18 import 'dart:nativewrappers'; |
| 8 // DO NOT EDIT - unless you are editing documentation as per: | 19 // DO NOT EDIT - unless you are editing documentation as per: |
| 9 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation | 20 // https://code.google.com/p/dart/wiki/ContributingHTMLDocumentation |
| 10 // Auto-generated dart:audio library. | 21 // Auto-generated dart:audio library. |
| (...skipping 465 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 476 @SupportedBrowser(SupportedBrowser.SAFARI) | 487 @SupportedBrowser(SupportedBrowser.SAFARI) |
| 477 @Experimental | 488 @Experimental |
| 478 class SqlTransactionSync extends NativeFieldWrapperClass1 { | 489 class SqlTransactionSync extends NativeFieldWrapperClass1 { |
| 479 SqlTransactionSync.internal(); | 490 SqlTransactionSync.internal(); |
| 480 | 491 |
| 481 @DomName('SQLTransactionSync.executeSql') | 492 @DomName('SQLTransactionSync.executeSql') |
| 482 @DocsEditable | 493 @DocsEditable |
| 483 SqlResultSet executeSql(String sqlStatement, List arguments) native "SQLTransa
ctionSync_executeSql_Callback"; | 494 SqlResultSet executeSql(String sqlStatement, List arguments) native "SQLTransa
ctionSync_executeSql_Callback"; |
| 484 | 495 |
| 485 } | 496 } |
| OLD | NEW |