<?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 Quote:Phil P. (Pete) wrote: in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077142#M60305</link>
    <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Phil P. (Pete) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Not sure why you're using the plugin, SQLLite is built in natively and works pretty well. (I have 4 apps using the native functionality). Some features are a little trickier than you might think but that's about the only issue.&lt;/P&gt;

&lt;P&gt;IF you really feel the need to use the plugin, I'd suggest downloading it and then adding it via the 3rd party option. &amp;nbsp;Note though that some plugins won't unzip because the path is too long.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;As your suggestion , now plugin is added .i tried sample code from github but it's not working only showing&amp;nbsp;OPEN database: my.db in debugger but in emulator and app preview not showing anything . I don't know where i made mistake .Please help me.code snippet as below.&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;document.addEventListener('deviceready',onDeviceReady,false);
function onDeviceReady(event)
{
   var x= document.getElementById('alert');
    x.innerHTML="Hari Om";
    //navigator.notification.alert("Har Om");
    window.sqlitePlugin.selfTest(function() {
    console.log('SELF test OK');
        x.innerHTML="Test ok";
        navigator.notification.alert("Har Om");
  });
    
   
    var db = window.sqlitePlugin.openDatabase({ name: 'my.db', location: 'default' }, function (db) {
                    navigator.notification.alert("Har Om");
                                // Here, you might create or open the table.
                     db.transaction(function (tx) {
    // ...
    tx.executeSql('CREATE TABLE customerAccounts (firstname, lastname, acctNo)');
}, function (error) {
    console.log('transaction error: ' + error.message);
                          navigator.notification.alert(error.message);
}, function () {
    console.log('transaction ok');
                          navigator.notification.alert("ok");
});
        

          }, function (error) {
                    console.log('Open database ERROR: ' + JSON.stringify(error));
         navigator.notification.alert("ok");
          });
    
    
}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Sat, 08 Apr 2017 05:22:22 GMT</pubDate>
    <dc:creator>kulkarni__sameer</dc:creator>
    <dc:date>2017-04-08T05:22:22Z</dc:date>
    <item>
      <title>Adding Third party plugin itehelpers/Cordova-sqlite-storage showing 'sqllite-connector.jar' file not find</title>
      <link>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077139#M60302</link>
      <description>&lt;P&gt;I am developing app using sqlite plugin. while fetching plugin from github link it's shwing that sqlite-connector.jar file not found.I am not getting why this is showing or is there any suitable method for local database better than sqlite.Please help me.&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Regards&amp;nbsp;&lt;/P&gt;

&lt;P&gt;Sameer Kulkarni&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 10:01:42 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077139#M60302</guid>
      <dc:creator>kulkarni__sameer</dc:creator>
      <dc:date>2017-04-07T10:01:42Z</dc:date>
    </item>
    <item>
      <title>Please carefully read this</title>
      <link>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077140#M60303</link>
      <description>&lt;P&gt;Please &lt;A href="https://github.com/litehelpers/Cordova-sqlite-storage#status"&gt;carefully read this section of the README&lt;/A&gt; on that plugin's github repo. This plugin can only be used with Cordova CLI. The last version that worked with either PhoneGap Build or the XDK build system was version 1.2.2.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 17:20:00 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077140#M60303</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2017-04-07T17:20:00Z</dc:date>
    </item>
    <item>
      <title>Not sure why you're using the</title>
      <link>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077141#M60304</link>
      <description>&lt;P&gt;Not sure why you're using the plugin, SQLLite is built in natively and works pretty well. (I have 4 apps using the native functionality). Some features are a little trickier than you might think but that's about the only issue.&lt;/P&gt;

&lt;P&gt;IF you really feel the need to use the plugin, I'd suggest downloading it and then adding it via the 3rd party option. &amp;nbsp;Note though that some plugins won't unzip because the path is too long.&lt;/P&gt;</description>
      <pubDate>Fri, 07 Apr 2017 17:22:21 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077141#M60304</guid>
      <dc:creator>Phil_P___Pete_</dc:creator>
      <dc:date>2017-04-07T17:22:21Z</dc:date>
    </item>
    <item>
      <title>Quote:Phil P. (Pete) wrote:</title>
      <link>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077142#M60305</link>
      <description>&lt;P&gt;&lt;/P&gt;&lt;BLOCKQUOTE&gt;Phil P. (Pete) wrote:&lt;BR /&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;Not sure why you're using the plugin, SQLLite is built in natively and works pretty well. (I have 4 apps using the native functionality). Some features are a little trickier than you might think but that's about the only issue.&lt;/P&gt;

&lt;P&gt;IF you really feel the need to use the plugin, I'd suggest downloading it and then adding it via the 3rd party option. &amp;nbsp;Note though that some plugins won't unzip because the path is too long.&lt;/P&gt;

&lt;P&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;&lt;/P&gt;

&lt;P&gt;As your suggestion , now plugin is added .i tried sample code from github but it's not working only showing&amp;nbsp;OPEN database: my.db in debugger but in emulator and app preview not showing anything . I don't know where i made mistake .Please help me.code snippet as below.&lt;/P&gt;

&lt;PRE class="brush:jscript;"&gt;document.addEventListener('deviceready',onDeviceReady,false);
function onDeviceReady(event)
{
   var x= document.getElementById('alert');
    x.innerHTML="Hari Om";
    //navigator.notification.alert("Har Om");
    window.sqlitePlugin.selfTest(function() {
    console.log('SELF test OK');
        x.innerHTML="Test ok";
        navigator.notification.alert("Har Om");
  });
    
   
    var db = window.sqlitePlugin.openDatabase({ name: 'my.db', location: 'default' }, function (db) {
                    navigator.notification.alert("Har Om");
                                // Here, you might create or open the table.
                     db.transaction(function (tx) {
    // ...
    tx.executeSql('CREATE TABLE customerAccounts (firstname, lastname, acctNo)');
}, function (error) {
    console.log('transaction error: ' + error.message);
                          navigator.notification.alert(error.message);
}, function () {
    console.log('transaction ok');
                          navigator.notification.alert("ok");
});
        

          }, function (error) {
                    console.log('Open database ERROR: ' + JSON.stringify(error));
         navigator.notification.alert("ok");
          });
    
    
}&lt;/PRE&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sat, 08 Apr 2017 05:22:22 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077142#M60305</guid>
      <dc:creator>kulkarni__sameer</dc:creator>
      <dc:date>2017-04-08T05:22:22Z</dc:date>
    </item>
    <item>
      <title>You cannot debug third-party</title>
      <link>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077143#M60306</link>
      <description>&lt;P&gt;You cannot debug third-party plugins in the Simulate (Emulate) tab and in App Preview. You can only test that code in a built app. See these doc pages:&lt;/P&gt;

&lt;UL&gt;
	&lt;LI&gt;&lt;A href="https://software.intel.com/en-us/xdk/docs/intel-xdk-simulator-limitations" target="_blank"&gt;https://software.intel.com/en-us/xdk/docs/intel-xdk-simulator-limitations&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://software.intel.com/en-us/xdk/docs/intel-xdk-app-preview-overview" target="_blank"&gt;https://software.intel.com/en-us/xdk/docs/intel-xdk-app-preview-overview&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://software.intel.com/en-us/xdk/docs/intel-xdk-debug-and-test-overview" target="_blank"&gt;https://software.intel.com/en-us/xdk/docs/intel-xdk-debug-and-test-overview&lt;/A&gt;&lt;/LI&gt;
	&lt;LI&gt;&lt;A href="https://software.intel.com/en-us/xdk/docs/using-remote-chrome-devtools-to-debug-android-cordova-apps" target="_blank"&gt;https://software.intel.com/en-us/xdk/docs/using-remote-chrome-devtools-to-debug-android-cordova-apps&lt;/A&gt;&lt;/LI&gt;
&lt;/UL&gt;</description>
      <pubDate>Sat, 08 Apr 2017 23:32:25 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/Adding-Third-party-plugin-itehelpers-Cordova-sqlite-storage/m-p/1077143#M60306</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2017-04-08T23:32:25Z</dc:date>
    </item>
  </channel>
</rss>

