I am trying to use IndexedDB in a Tizen webapp. The spec says that Tizen apps should be able to use IndexedDB and there is even the following example code on the Tizen developers site:
<script> if (!window.indexedDB) { window.alert("Does not support IndexedDB"); } else{ var tizenDB = {} var request = window.indexedDB.open("TizenIndexedDB" ); console.log(request); //The created indexedDB can be checked. request.onsuccess = function(e) { // } request.onerror = function(e) { console.log(e); } } </script>
However, when I try to run this code in a Tizen app, I get an alert saying that IndexedDB is not supported. Any suggestions would be greatly appreciated.
Thanks!
Michael Hilton