<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Another solution to consider in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040879#M45962</link>
    <description>&lt;P&gt;Another solution to consider is using this plugin as an alternative: &lt;A href="https://github.com/brodysoft/Cordova-SQLitePlugin" target="_blank"&gt;https://github.com/brodysoft/Cordova-SQLitePlugin&lt;/A&gt;&lt;/P&gt;</description>
    <pubDate>Fri, 13 Mar 2015 23:41:34 GMT</pubDate>
    <dc:creator>PaulF_IntelCorp</dc:creator>
    <dc:date>2015-03-13T23:41:34Z</dc:date>
    <item>
      <title>indexeddb</title>
      <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040876#M45959</link>
      <description>&lt;P&gt;jQuery Mobile app using indexeddb works in Chrome and XDK emulator.&amp;nbsp; However when it is tested on a device (Samsung Galaxy S5) the database is created but not the objectstores.&amp;nbsp; Changing the version number does not fire onupgrade.&amp;nbsp; Any help is appreciated.&lt;/P&gt;</description>
      <pubDate>Sun, 08 Mar 2015 04:42:11 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040876#M45959</guid>
      <dc:creator>Don_R_</dc:creator>
      <dc:date>2015-03-08T04:42:11Z</dc:date>
    </item>
    <item>
      <title>Are you using Crosswalk on</title>
      <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040877#M45960</link>
      <description>&lt;P&gt;Are you using Crosswalk on the device? If not you may want to give it a try or provide some additional detail on your OS version since it won't have a standardized web container.&lt;/P&gt;

&lt;P&gt;Also, to clarify your comment, you are saying the DB was created but not the objectstores, and that you aren't getting onupgrade events. But you are saying that the object returned by&amp;nbsp;IDBEngine.open fires onsuccess, as you'd expect?&lt;/P&gt;

&lt;P&gt;I have had excellent luck with IDB on Android, iOS is another matter, but I use a shim to WebSQL for that.&lt;/P&gt;</description>
      <pubDate>Mon, 09 Mar 2015 17:32:55 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040877#M45960</guid>
      <dc:creator>Barry_Johnson</dc:creator>
      <dc:date>2015-03-09T17:32:55Z</dc:date>
    </item>
    <item>
      <title> Thank you for the comment. </title>
      <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040878#M45961</link>
      <description>&lt;P&gt;&amp;nbsp;Thank you for the comment.&amp;nbsp; I am not using Crosswalk, but will give it a try.&lt;/P&gt;</description>
      <pubDate>Tue, 10 Mar 2015 01:26:35 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040878#M45961</guid>
      <dc:creator>Don_R_</dc:creator>
      <dc:date>2015-03-10T01:26:35Z</dc:date>
    </item>
    <item>
      <title>Another solution to consider</title>
      <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040879#M45962</link>
      <description>&lt;P&gt;Another solution to consider is using this plugin as an alternative: &lt;A href="https://github.com/brodysoft/Cordova-SQLitePlugin" target="_blank"&gt;https://github.com/brodysoft/Cordova-SQLitePlugin&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 13 Mar 2015 23:41:34 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040879#M45962</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2015-03-13T23:41:34Z</dc:date>
    </item>
    <item>
      <title>I wonder if anybody has a</title>
      <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040880#M45963</link>
      <description>&lt;P&gt;I wonder if anybody has a working IndexedDB installation working?&amp;nbsp; We have tried with a successful 3rd pty plugin import, and compiled with Crosswalk.&amp;nbsp; We can get a connection, but no data in the emulator nor in a test smartphone.&amp;nbsp; We DO get the data in a browser launched from the html file directly.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 01 May 2015 19:57:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040880#M45963</guid>
      <dc:creator>Bruce_C_</dc:creator>
      <dc:date>2015-05-01T19:57:21Z</dc:date>
    </item>
    <item>
      <title>Hi there</title>
      <link>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040881#M45964</link>
      <description>&lt;P&gt;Hi there&lt;/P&gt;

&lt;P&gt;i am having the same problem with indexeddb. objectstore is not being created, the database gets created but after i validate the form elements on the app page, i tried to write to the database but it fails.&lt;/P&gt;

&lt;P&gt;i used&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;// collection of form elements
 var name = document.getElementById("name").value

//validate form elements
if (name === null || name === "") {
        navigator.notification.alert("name must be filled out", , "Error: Details incomplete.", "close");
    } 
else {
        
        saveVehRecord();
            return;
        }       
        navigator.notification.alert("save details failed!!!"); 

//write to database store

function (){
var Record = new Record(name);
     navigator.notification.alert("Record prepared for write");
     
     var transaction = database.transaction("NameData", "readwrite");
     var objectStore = transaction.objectStore("NameData");
     
     var request = objectStore.put(Record);
     request.onerror = function(evt){
         navigator.notification.alert("Error: Database connection failed.");
     };
     request.onsuccess = function(evt) {
         navigator.notification.alert("Success: name record added into database");

    };
}&lt;/PRE&gt;

&lt;P&gt;the above is the implementation. I created the database with a header js file and the codes for the objectstore was also there. Those codes does fire and the database is created but the elements from the form never get written to store. instead it give me an error&lt;/P&gt;

&lt;P&gt;TypeError: Record is undefined.&lt;/P&gt;

&lt;P&gt;Please help. I am just a newbie trying to code with intel XDK.&lt;/P&gt;

&lt;P&gt;thanks&lt;/P&gt;</description>
      <pubDate>Thu, 22 Oct 2015 11:46:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/indexeddb/m-p/1040881#M45964</guid>
      <dc:creator>Jon_G_</dc:creator>
      <dc:date>2015-10-22T11:46:00Z</dc:date>
    </item>
  </channel>
</rss>

