<?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 cordova-sqlite-legacy Plugin  in Software Archive</title>
    <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094056#M66303</link>
    <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi im using cordoba-sql-legacy plugin ver 0.7.18, and i follow a tutorial but i don't know if is working because the emulator console didn't give me any information, i also try adding a "alert" but it shows nothing so maybe is something wrong on my code i really don't know. as framework im &amp;nbsp;using Ionic with angularJS. any info&amp;nbsp;&lt;/SPAN&gt;about&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp;i will&amp;nbsp;&lt;/SPAN&gt;appreciate&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp;a lot thanks =)&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;My app.js&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;var db = null;&lt;/P&gt;

&lt;P&gt;var example = angular.module('myApp', ['ionic', 'ngCordova'])&lt;/P&gt;

&lt;P&gt;.run(function($ionicPlatform, $cordovaSQLite) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $ionicPlatform.ready(function() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(window.cordova &amp;amp;&amp;amp; window.cordova.plugins.Keyboard) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(window.StatusBar) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StatusBar.styleDefault();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; db = $cordovaSQLite.openDB("my.db");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $cordovaSQLite.execute(db, "CREATE TABLE IF NOT EXISTS people (id integer primary key, firstname text, lastname text)");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; });&lt;/P&gt;

&lt;P&gt;example.controller("ExampleController", function($scope, $cordovaSQLite) {&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; $scope.insert = function(firstname, lastname) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var query = "INSERT INTO people (firstname, lastname) VALUES (?,?)";&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $cordovaSQLite.execute(db, query, [firstname, lastname]).then(function(result) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log("INSERT ID -&amp;gt; " + result.insertId);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("result.insertId");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(error) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; $scope.select = function(lastname) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var query = "SELECT firstname, lastname FROM people WHERE lastname = ?";&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $cordovaSQLite.execute(db, query, [lastname]).then(function(result) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(result.rows.length &amp;gt; 0) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log("SELECTED -&amp;gt; " + result.rows.item(0).firstname + " " + result.rows.item(0).lastname);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log("No results found");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(error) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	})&lt;SPAN style="font-size: 1em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;My index.html&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;lt;div id="campa_de_sangre" class="upage-content vertical-col left hidden"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id="consejos" class="upage-content vertical-col left hidden"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ion-content ng-controller="ExampleController"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button class="button" ng-click="insert('nic','rad')"&amp;gt;Insertar&amp;lt;/button&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button class="button" ng-click="select('rad')"&amp;gt;Selecet&amp;lt;/button&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/ion-content&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;</description>
    <pubDate>Mon, 18 Apr 2016 14:18:48 GMT</pubDate>
    <dc:creator>nicolas_r_</dc:creator>
    <dc:date>2016-04-18T14:18:48Z</dc:date>
    <item>
      <title>cordova-sqlite-legacy Plugin</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094056#M66303</link>
      <description>&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;Hi im using cordoba-sql-legacy plugin ver 0.7.18, and i follow a tutorial but i don't know if is working because the emulator console didn't give me any information, i also try adding a "alert" but it shows nothing so maybe is something wrong on my code i really don't know. as framework im &amp;nbsp;using Ionic with angularJS. any info&amp;nbsp;&lt;/SPAN&gt;about&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp;i will&amp;nbsp;&lt;/SPAN&gt;appreciate&lt;SPAN style="font-size: 1em;"&gt;&amp;nbsp;a lot thanks =)&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;My app.js&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;var db = null;&lt;/P&gt;

&lt;P&gt;var example = angular.module('myApp', ['ionic', 'ngCordova'])&lt;/P&gt;

&lt;P&gt;.run(function($ionicPlatform, $cordovaSQLite) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $ionicPlatform.ready(function() {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(window.cordova &amp;amp;&amp;amp; window.cordova.plugins.Keyboard) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; cordova.plugins.Keyboard.hideKeyboardAccessoryBar(true);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(window.StatusBar) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; StatusBar.styleDefault();&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; db = $cordovaSQLite.openDB("my.db");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $cordovaSQLite.execute(db, "CREATE TABLE IF NOT EXISTS people (id integer primary key, firstname text, lastname text)");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; });&lt;/P&gt;

&lt;P&gt;example.controller("ExampleController", function($scope, $cordovaSQLite) {&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; $scope.insert = function(firstname, lastname) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var query = "INSERT INTO people (firstname, lastname) VALUES (?,?)";&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $cordovaSQLite.execute(db, query, [firstname, lastname]).then(function(result) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log("INSERT ID -&amp;gt; " + result.insertId);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; alert("result.insertId");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(error) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; $scope.select = function(lastname) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; var query = "SELECT firstname, lastname FROM people WHERE lastname = ?";&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; $cordovaSQLite.execute(db, query, [lastname]).then(function(result) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(result.rows.length &amp;gt; 0) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log("SELECTED -&amp;gt; " + result.rows.item(0).firstname + " " + result.rows.item(0).lastname);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&amp;nbsp;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; } else {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log("No results found");&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }, function(error) {&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; console.log(error);&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; };&lt;BR /&gt;
	&amp;nbsp;&lt;BR /&gt;
	})&lt;SPAN style="font-size: 1em;"&gt;;&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&lt;SPAN style="font-size: 1em;"&gt;My index.html&lt;/SPAN&gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&amp;lt;div id="campa_de_sangre" class="upage-content vertical-col left hidden"&amp;gt;&amp;lt;/div&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;div id="consejos" class="upage-content vertical-col left hidden"&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;ion-content ng-controller="ExampleController"&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button class="button" ng-click="insert('nic','rad')"&amp;gt;Insertar&amp;lt;/button&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;button class="button" ng-click="select('rad')"&amp;gt;Selecet&amp;lt;/button&amp;gt;&lt;BR /&gt;
	&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/ion-content&amp;gt;&lt;/P&gt;

&lt;P&gt;&amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;lt;/div&amp;gt;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2016 14:18:48 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094056#M66303</guid>
      <dc:creator>nicolas_r_</dc:creator>
      <dc:date>2016-04-18T14:18:48Z</dc:date>
    </item>
    <item>
      <title>Intel XDK Emulate Tab only</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094057#M66304</link>
      <description>&lt;P&gt;Intel XDK Emulate Tab only support the standard Cordova plugins. You will need to test any other plugins on a physical device.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2016 20:30:45 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094057#M66304</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2016-04-18T20:30:45Z</dc:date>
    </item>
    <item>
      <title>but the alert in the could</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094058#M66305</link>
      <description>&lt;P&gt;but the alert in the could should apear even when the pluging do nothing?&lt;/P&gt;

&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2016 21:12:37 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094058#M66305</guid>
      <dc:creator>nicolas_r_</dc:creator>
      <dc:date>2016-04-18T21:12:37Z</dc:date>
    </item>
    <item>
      <title>The alert is contained within</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094059#M66306</link>
      <description>&lt;P&gt;The alert is contained within your sqllite code block so it will not execute if the plugin or functionality isn't accessible.&lt;/P&gt;</description>
      <pubDate>Mon, 18 Apr 2016 22:44:36 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094059#M66306</guid>
      <dc:creator>Elroy_A_Intel</dc:creator>
      <dc:date>2016-04-18T22:44:36Z</dc:date>
    </item>
    <item>
      <title>Nicolas -- please use the</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094060#M66307</link>
      <description>&lt;P&gt;Nicolas -- please use the Debug tab to test an app that contains non-core plugins.&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 01:27:53 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094060#M66307</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-04-19T01:27:53Z</dc:date>
    </item>
    <item>
      <title>i test on real device and not</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094061#M66308</link>
      <description>&lt;P&gt;i test on real device and not event the alert show&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 19 Apr 2016 18:48:03 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094061#M66308</guid>
      <dc:creator>nicolas_r_</dc:creator>
      <dc:date>2016-04-19T18:48:03Z</dc:date>
    </item>
    <item>
      <title>Might have to use the CDT</title>
      <link>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094062#M66309</link>
      <description>&lt;P&gt;Might have to use the CDT panel to see what is happening. &amp;gt; &lt;A href="https://developers.google.com/web/tools/chrome-devtools/" target="_blank"&gt;https://developers.google.com/web/tools/chrome-devtools/&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 20 Apr 2016 23:41:19 GMT</pubDate>
      <guid>https://community.intel.com/t5/Software-Archive/cordova-sqlite-legacy-Plugin/m-p/1094062#M66309</guid>
      <dc:creator>PaulF_IntelCorp</dc:creator>
      <dc:date>2016-04-20T23:41:19Z</dc:date>
    </item>
  </channel>
</rss>

