IndexedDB transaction scope does not work well

IndexedDB transaction scope does not work well

BY 23 Aug 2013 Web Application Development
I found transaction scope does not work in tizen 2.2. 
 
<pre class=”code”>
var transaction = db.transaction([‘ObjectStoreName1’, ‘ObjectStoreName2’], “readonly”);
var store = transaction.objectStore(‘ObjectStoreName1’);
</pre>
 
–> ERROR: NotFoundError: DOM IDBDatabase Exception 8
 
This is very basic feature of indexedDB. I think it’s critical bug. 

Is there anyone who are using indexedDB as application’s main database? Is it suitable to use indexeddb as a database of an complex app in tizen?

 

Written by