<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Introducing Web SQL Databases</title>
	<atom:link href="http://html5doctor.com/introducing-web-sql-databases/feed/" rel="self" type="application/rss+xml" />
	<link>http://html5doctor.com/introducing-web-sql-databases/</link>
	<description>helping you implement HTML5 today</description>
	<lastBuildDate>Wed, 16 May 2012 21:31:49 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=</generator>
	<item>
		<title>By: Jumaru</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-24901</link>
		<dc:creator>Jumaru</dc:creator>
		<pubDate>Wed, 07 Mar 2012 01:19:54 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-24901</guid>
		<description>I&#039;m a little confused about one thing. Since the executeSql runs asynchronously wouldn&#039;t that mean that running:

&lt;code&gt;
tx.executeSql(&#039;CREATE TABLE IF NOT EXISTS foo (id unique, text)&#039;);
  tx.executeSql(&#039;INSERT INTO foo (id, text) VALUES (1, &quot;synergies&quot;)&#039;);

&lt;/code&gt;
 will produce unexpected results if the insert runs before the create table runs??? Should you not do it something along these lines?:

&lt;code&gt;
tx.executeSql(&#039;CREATE TABLE IF NOT EXISTS foo (id unique, text)&#039;,[],function(result){
tx.executeSql(&#039;INSERT INTO foo (id, text) VALUES (1, &quot;synergies&quot;)&#039;);
});

&lt;/code&gt;</description>
		<content:encoded><![CDATA[<p>I&#8217;m a little confused about one thing. Since the executeSql runs asynchronously wouldn&#8217;t that mean that running:</p>
<p><code><br />
tx.executeSql('CREATE TABLE IF NOT EXISTS foo (id unique, text)');<br />
  tx.executeSql('INSERT INTO foo (id, text) VALUES (1, "synergies")');</code></p>
<p><br />
 will produce unexpected results if the insert runs before the create table runs??? Should you not do it something along these lines?:</p>
<p><code><br />
tx.executeSql('CREATE TABLE IF NOT EXISTS foo (id unique, text)',[],function(result){<br />
tx.executeSql('INSERT INTO foo (id, text) VALUES (1, "synergies")');<br />
});</code></p>
<p></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: onlywebpro</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-24859</link>
		<dc:creator>onlywebpro</dc:creator>
		<pubDate>Sun, 04 Mar 2012 09:08:28 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-24859</guid>
		<description>Developer is advised to use IndexedDB for the coming web application development.</description>
		<content:encoded><![CDATA[<p>Developer is advised to use IndexedDB for the coming web application development.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: onlywebpro</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-24858</link>
		<dc:creator>onlywebpro</dc:creator>
		<pubDate>Sun, 04 Mar 2012 09:06:39 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-24858</guid>
		<description>On November 18, 2010, the W3C announced that Web SQL database is a deprecated specification. This is a recommendation for web developers to no longer use the technology as effectively the spec will receive no new updates and browser vendors aren&#039;t encouraged to support this technology.

Regards,

The Management of onlyWebPro.com</description>
		<content:encoded><![CDATA[<p>On November 18, 2010, the W3C announced that Web SQL database is a deprecated specification. This is a recommendation for web developers to no longer use the technology as effectively the spec will receive no new updates and browser vendors aren&#8217;t encouraged to support this technology.</p>
<p>Regards,</p>
<p>The Management of onlyWebPro.com</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray Browning</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-24571</link>
		<dc:creator>Ray Browning</dc:creator>
		<pubDate>Wed, 22 Feb 2012 19:20:22 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-24571</guid>
		<description>The whole idea of WebDB is to have it persist. I am not sure why your database would just go away. We use the following code and it seems to work. Are you sure your browser supports it?

if (localDB==null)
{
      var shortName = &#039;MyDB&#039;;
      var version = &#039;1.0&#039;;
      var displayName = &#039;MyDatabase&#039;;
      var maxSize = 65536; // in bytes
      localDB = window.openDatabase(shortName, version, displayName, maxSize);
}


if (!window.openDatabase)
{
      DisplayMyError(&quot;The browser you are using does not support  this. Google Chrome is recommended.&quot;);
}
else
{
     ProcessSomeData();
}</description>
		<content:encoded><![CDATA[<p>The whole idea of WebDB is to have it persist. I am not sure why your database would just go away. We use the following code and it seems to work. Are you sure your browser supports it?</p>
<p>if (localDB==null)<br />
{<br />
      var shortName = &#8216;MyDB&#8217;;<br />
      var version = &#8217;1.0&#8242;;<br />
      var displayName = &#8216;MyDatabase&#8217;;<br />
      var maxSize = 65536; // in bytes<br />
      localDB = window.openDatabase(shortName, version, displayName, maxSize);<br />
}</p>
<p>if (!window.openDatabase)<br />
{<br />
      DisplayMyError(&#8220;The browser you are using does not support  this. Google Chrome is recommended.&#8221;);<br />
}<br />
else<br />
{<br />
     ProcessSomeData();<br />
}</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: DS</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-21683</link>
		<dc:creator>DS</dc:creator>
		<pubDate>Thu, 26 Jan 2012 11:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-21683</guid>
		<description>Can someone please guide me as to, is the data stored in a web sql database persistent?

I created a database and then added some records to it. I cannot access the database via any other page which justifies the &quot;same origin&quot; concept.

But what if I need to access the database again to extract data how do I go about that? I mean from another page.. 

Please help. Thank you</description>
		<content:encoded><![CDATA[<p>Can someone please guide me as to, is the data stored in a web sql database persistent?</p>
<p>I created a database and then added some records to it. I cannot access the database via any other page which justifies the &#8220;same origin&#8221; concept.</p>
<p>But what if I need to access the database again to extract data how do I go about that? I mean from another page.. </p>
<p>Please help. Thank you</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: osc2nuke</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-18799</link>
		<dc:creator>osc2nuke</dc:creator>
		<pubDate>Mon, 21 Nov 2011 23:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-18799</guid>
		<description>i want everyone who stick to webdb, provide with this excelent javascript to insert .sql files: http://html5sql.com/index.html in a webdb enviroment</description>
		<content:encoded><![CDATA[<p>i want everyone who stick to webdb, provide with this excelent javascript to insert .sql files: <a href="http://html5sql.com/index.html" rel="nofollow">http://html5sql.com/index.html</a> in a webdb enviroment</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nad</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-18780</link>
		<dc:creator>Nad</dc:creator>
		<pubDate>Mon, 21 Nov 2011 16:36:52 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-18780</guid>
		<description>I have tried using web sql databases. In my code, i make opendatabase call at the time of user login. And when user proceeds il make some data inserts to this db and noticed that data is being saved. If the user logs out and logs in again, i noticed the db to be created again, resulting in a loss of data, that was previously stored. What can be the reason for that?</description>
		<content:encoded><![CDATA[<p>I have tried using web sql databases. In my code, i make opendatabase call at the time of user login. And when user proceeds il make some data inserts to this db and noticed that data is being saved. If the user logs out and logs in again, i noticed the db to be created again, resulting in a loss of data, that was previously stored. What can be the reason for that?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ray Browning</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-18528</link>
		<dc:creator>Ray Browning</dc:creator>
		<pubDate>Mon, 14 Nov 2011 11:52:15 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-18528</guid>
		<description>&gt;Hi,
&gt;I was wondering about security issues, like I could easily go &gt;through your SQL code. What are the different ways SQL code can &gt;be protected so that its not that easily accessible.
&gt;One thing I could think off is encryption but just wanted your point &gt;of view.
Probably the best thing to do is to limit data on the SQL side using views and security.</description>
		<content:encoded><![CDATA[<p>&gt;Hi,<br />
&gt;I was wondering about security issues, like I could easily go &gt;through your SQL code. What are the different ways SQL code can &gt;be protected so that its not that easily accessible.<br />
&gt;One thing I could think off is encryption but just wanted your point &gt;of view.<br />
Probably the best thing to do is to limit data on the SQL side using views and security.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gaurav v bagga</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-18513</link>
		<dc:creator>gaurav v bagga</dc:creator>
		<pubDate>Sun, 13 Nov 2011 17:45:43 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-18513</guid>
		<description>Hi, 
I was wondering about security issues, like I could easily go through your SQL code. What are the different ways SQL code can be protected so that its not that easily accessible.
One thing I could think off is encryption but just wanted your point of view.</description>
		<content:encoded><![CDATA[<p>Hi,<br />
I was wondering about security issues, like I could easily go through your SQL code. What are the different ways SQL code can be protected so that its not that easily accessible.<br />
One thing I could think off is encryption but just wanted your point of view.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Prats</title>
		<link>http://html5doctor.com/introducing-web-sql-databases/#comment-18051</link>
		<dc:creator>Prats</dc:creator>
		<pubDate>Fri, 14 Oct 2011 07:02:20 +0000</pubDate>
		<guid isPermaLink="false">http://html5doctor.com/?p=1408#comment-18051</guid>
		<description>yes...</description>
		<content:encoded><![CDATA[<p>yes&#8230;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

