Экспорт:
Папки
/446634661/bazi-dannih/Chrome/WEB-SQL-DB
Не экспортировать закрытые директории
Преобразовывать заметки в html
Экспортировать
Применить |
![]() | ![]() |
| 2019-03-21 17:20:14 |
|
|
try {
if (window.openDatabase) {
db = openDatabase("WebNoteTest_1", "1.0", "HTML5 Database API example", 200000);
if (!db)
console.log("Failed to open the database on disk. This is probably because the version was bad or there is not enough space left in this domain's quota");
} else
console.log("Couldn't open the database. Please try with a WebKit nightly with this feature enabled");
} catch(err) {
db = null;
console.log("Couldn't open the database. Please try with a WebKit nightly with this feature enabled");
}
if (db != null)
{
console.log('openDatabase OK');
} | Подробнее по ссылке: https://habr.com/ru/post/92677/ | 2019-03-19 10:10:58 |
|
|





