Note that there are some explanatory texts on larger screens.

plurals
  1. PO
    primarykey
    data
    text
    <p>You can try my indexeddbviewer, it is located on <a href="http://linq2indexeddb.codeplex.com" rel="nofollow">http://linq2indexeddb.codeplex.com</a>.</p> <p>The following things you'll need to do: - Add the following references to your page:</p> <pre><code>&lt;script type="text/javascript" src="../Scripts/jquery-1.7.2.js"&gt; &lt;/script&gt; &lt;script type="text/javascript" src="../Scripts/jquery-ui-1.8.20.js"&gt; &lt;/script&gt; &lt;script type="text/javascript" src="../Scripts/Linq2IndexedDB.js"&gt; &lt;/script&gt; &lt;script type="text/javascript" src="../Scripts/IndexedDBViewer.js"&gt; &lt;/script&gt; </code></pre> <p>This means you need to get jQuery + jQuery UI And linq2indexedDB (this is my lib and you can get it also on <a href="http://linq2indexeddb.codeplex.com" rel="nofollow">http://linq2indexeddb.codeplex.com</a>).</p> <p>And to make it work add the following in the body:</p> <pre><code>&lt;body&gt; &lt;p&gt;&lt;label id="lblDatabaseName" for="txtDatabaseName"&gt;Database name:&lt;/label&gt; &lt;input type="text" id="txtDatabaseName" /&gt;&lt;input type="button" id="btnViewDatabase" value="View database" /&gt;&lt;/p&gt; &lt;div id="tabs"&gt; &lt;ul&gt; &lt;/ul&gt; &lt;/div&gt; &lt;/body&gt; </code></pre> <p>I'll tye to work out an easier way asap.</p> <p>An other way is just use my linq2indexeddb library, and create an new instance of it like this:</p> <pre><code>var db = window.linq2indexedDB("Database name", null, true) </code></pre> <p>if you have done this you can call an attribute viewer, that will give you all the information about the indexeddb database.</p> <pre><code>db.viewer </code></pre>
    singulars
    1. This table or related slice is empty.
    plurals
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. This table or related slice is empty.
    1. VO
      singulars
      1. This table or related slice is empty.
    1. This table or related slice is empty.
 

Querying!

 
Guidance

SQuiL has stopped working due to an internal error.

If you are curious you may find further information in the browser console, which is accessible through the devtools (F12).

Reload