<?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: New Mate extensions for using AIR and SQLite: &#8220;SQLService + SQLServiceInvoker&#8221;</title>
	<atom:link href="http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/</link>
	<description>// Flex, AIR, Flash</description>
	<lastBuildDate>Mon, 08 Mar 2010 09:27:18 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: [AIR] Mate ???extensions for SQLite &#171; Lab of Chowky</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-43692</link>
		<dc:creator>[AIR] Mate ???extensions for SQLite &#171; Lab of Chowky</dc:creator>
		<pubDate>Sat, 08 Aug 2009 09:02:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-43692</guid>
		<description>[...] http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqls... Source: [...]</description>
		<content:encoded><![CDATA[<p>[...] <a href="http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqls.." rel="nofollow">http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqls..</a>. Source: [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Muller</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-34618</link>
		<dc:creator>Andrew Muller</dc:creator>
		<pubDate>Sun, 03 May 2009 04:19:37 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-34618</guid>
		<description>@jurgen The problem is using the &#039;?&#039; index parameter next to the &#039;%&#039; character - that&#039;s why the error keeps getting thrown.

The solution is to concatenate the parameter with the character like this, where &#039;&#124;&#124;&#039; is the concatenation operator in SQLite:

sql = &quot;SELECT anyvalue FROM anytable WHERE anyvalueLIKE ? &#124;&#124; &#039;%&#039;&quot;

Andrew</description>
		<content:encoded><![CDATA[<p>@jurgen The problem is using the &#8216;?&#8217; index parameter next to the &#8216;%&#8217; character &#8211; that&#8217;s why the error keeps getting thrown.</p>
<p>The solution is to concatenate the parameter with the character like this, where &#8216;||&#8217; is the concatenation operator in SQLite:</p>
<p>sql = &#8220;SELECT anyvalue FROM anytable WHERE anyvalueLIKE ? || &#8216;%&#8217;&#8221;</p>
<p>Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ben</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-27363</link>
		<dc:creator>Ben</dc:creator>
		<pubDate>Tue, 17 Feb 2009 03:09:43 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-27363</guid>
		<description>Interesting stuff! Just got into Mate today after using UM Cairngorm for the past 6 months. I too plan to have a go at hacking your code to put in the transaction management, which is really easy. I don&#039;t think Mate&#039;ll be appropriate for the sorts of things I&#039;m doing with SQLite, but an interesting challenge nonetheless.

I know it&#039;s possible, but I&#039;m yet to figger out why; It doesn&#039;t seem like leaving the connection open from multiple operations is actually any faster than closing it every time. I was testing it on a coupla hundred inserts/deletes rather than selects (before I had transactions working), so maybe there&#039;s benefit purely on selects...?</description>
		<content:encoded><![CDATA[<p>Interesting stuff! Just got into Mate today after using UM Cairngorm for the past 6 months. I too plan to have a go at hacking your code to put in the transaction management, which is really easy. I don&#8217;t think Mate&#8217;ll be appropriate for the sorts of things I&#8217;m doing with SQLite, but an interesting challenge nonetheless.</p>
<p>I know it&#8217;s possible, but I&#8217;m yet to figger out why; It doesn&#8217;t seem like leaving the connection open from multiple operations is actually any faster than closing it every time. I was testing it on a coupla hundred inserts/deletes rather than selects (before I had transactions working), so maybe there&#8217;s benefit purely on selects&#8230;?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sectore</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26739</link>
		<dc:creator>sectore</dc:creator>
		<pubDate>Thu, 05 Feb 2009 08:51:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26739</guid>
		<description>@jurgen: Have you tried something like this?
&lt;code&gt;sql = &quot;SELECT anyvalue FROM anytable WHERE anyvalue LIKE &#039;a%&#039;&quot;&lt;/code&gt; 
Note the &#039;  &#039; for the wildcard definition within the SQL statement.

-Jens</description>
		<content:encoded><![CDATA[<p>@jurgen: Have you tried something like this?<br />
<code>sql = "SELECT anyvalue FROM anytable WHERE anyvalue LIKE 'a%'"</code><br />
Note the &#8216;  &#8216; for the wildcard definition within the SQL statement.</p>
<p>-Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: jurgen</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26700</link>
		<dc:creator>jurgen</dc:creator>
		<pubDate>Wed, 04 Feb 2009 14:27:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26700</guid>
		<description>Thank you for this great example..

Regarding the SQLManager .. how would I define the sql if I wanted to use WHERE .. LIKE instead of = ?
Tried adding % to the string but I always get errors.

Thanks in advance!</description>
		<content:encoded><![CDATA[<p>Thank you for this great example..</p>
<p>Regarding the SQLManager .. how would I define the sql if I wanted to use WHERE .. LIKE instead of = ?<br />
Tried adding % to the string but I always get errors.</p>
<p>Thanks in advance!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tom</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26604</link>
		<dc:creator>Tom</dc:creator>
		<pubDate>Mon, 02 Feb 2009 13:45:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26604</guid>
		<description>When I try to start the application it quits without even showing the main screen... I&#039;m using AIR 1.5. Any idea?</description>
		<content:encoded><![CDATA[<p>When I try to start the application it quits without even showing the main screen&#8230; I&#8217;m using AIR 1.5. Any idea?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sectore</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26465</link>
		<dc:creator>sectore</dc:creator>
		<pubDate>Fri, 30 Jan 2009 10:26:08 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26465</guid>
		<description>@Andrew: At the moment I don&#039;t plan any improvements on this extensions. 

Feel free to add your &quot;hack&quot; to the original extension on Google Code. It&#039;s open source ;) Thanks!

-Jens</description>
		<content:encoded><![CDATA[<p>@Andrew: At the moment I don&#8217;t plan any improvements on this extensions. </p>
<p>Feel free to add your &#8220;hack&#8221; to the original extension on Google Code. It&#8217;s open source <img src='http://www.websector.de/blog/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' />  Thanks!</p>
<p>-Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew Muller</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26456</link>
		<dc:creator>Andrew Muller</dc:creator>
		<pubDate>Thu, 29 Jan 2009 22:35:19 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26456</guid>
		<description>Hi Jens

Have you thought to update the extension to include an argument for the encryptionKey parameter for the connections open() method for encrypted databases for AIR 1.5?

I&#039;m hacking the original source for now for an application I&#039;m using your extension on.

Thanks, Andrew</description>
		<content:encoded><![CDATA[<p>Hi Jens</p>
<p>Have you thought to update the extension to include an argument for the encryptionKey parameter for the connections open() method for encrypted databases for AIR 1.5?</p>
<p>I&#8217;m hacking the original source for now for an application I&#8217;m using your extension on.</p>
<p>Thanks, Andrew</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sectore</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26417</link>
		<dc:creator>sectore</dc:creator>
		<pubDate>Tue, 27 Jan 2009 14:04:27 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26417</guid>
		<description>@Jon: At the moment I don&#039;t plan to add an asynchronous support.

Have you tried to checkout the source using SVN? It should be available using the following command: &lt;code&gt;svn checkout http://mate-examples.googlecode.com/svn/trunk/ mate-examples-read-only&lt;/code&gt;. 

Or you can check the code using your Browser (without Google&#039;s interface): &lt;a href=&quot;http://mate-examples.googlecode.com/svn/trunk/examples/airsqlite/&quot; rel=&quot;nofollow&quot;&gt;http://mate-examples.googlecode.com/svn/trunk/examples/airsqlite/&lt;/a&gt;

-Jens</description>
		<content:encoded><![CDATA[<p>@Jon: At the moment I don&#8217;t plan to add an asynchronous support.</p>
<p>Have you tried to checkout the source using SVN? It should be available using the following command: <code>svn checkout <a href="http://mate-examples.googlecode.com/svn/trunk/" rel="nofollow">http://mate-examples.googlecode.com/svn/trunk/</a> mate-examples-read-only</code>. </p>
<p>Or you can check the code using your Browser (without Google&#8217;s interface): <a href="http://mate-examples.googlecode.com/svn/trunk/examples/airsqlite/" rel="nofollow">http://mate-examples.googlecode.com/svn/trunk/examples/airsqlite/</a></p>
<p>-Jens</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jason Rice</title>
		<link>http://www.websector.de/blog/2008/10/04/new-mate-extensions-for-using-air-and-sqlite-sqlservice-sqlserviceinvoker/comment-page-1/#comment-26406</link>
		<dc:creator>Jason Rice</dc:creator>
		<pubDate>Mon, 26 Jan 2009 21:33:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.websector.de/blog/?p=60#comment-26406</guid>
		<description>Real question: Do you plan on adding support for Async connections?</description>
		<content:encoded><![CDATA[<p>Real question: Do you plan on adding support for Async connections?</p>
]]></content:encoded>
	</item>
</channel>
</rss>
