<?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>Anistar RIA Blog &#187; SQLite</title>
	<atom:link href="http://blog.riaproject.com/tag/sqlite/feed" rel="self" type="application/rss+xml" />
	<link>http://blog.riaproject.com</link>
	<description>Rich Internet Application 知識誌</description>
	<lastBuildDate>Fri, 16 Jul 2010 08:25:37 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>分享AIR版的SQLite編輯器</title>
		<link>http://blog.riaproject.com/air/815.html</link>
		<comments>http://blog.riaproject.com/air/815.html#comments</comments>
		<pubDate>Fri, 09 Jan 2009 01:24:30 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[AIR]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=815</guid>
		<description><![CDATA[之前在上到Adobe AIR課程的時候就遇到有學生在問有沒有SQLite的工具可以用，不然要自己下語法去建立Table或是要檢查資料對不對不是很容易，當然其實這樣的工具是有的，不過最近我無意中發現有一個AIR版的SQLite Administartor Tool可以使用，所以就趕快跟大家分享一下。 我用起來的感覺還蠻簡單的，只要有用過資料庫管理工具的人應該都可以痕容易上手才對，其執行畫面如下： 除了基本的功能之外也可以直接下SQL語法： 有在使用SQLite的人我推薦這套軟體來做協助開發，倒是蠻好用的，他連SQLite資料庫的加密編碼都做好了，不過可惜的是我用PHP建立的SQLite資料庫他認不得，原因不明，那就看看之後能不能更新版本了(目前是0.9版)。 想要下載的人可以至: http://www.dehats.com/drupal/?q=node/58 下載使用]]></description>
		<wfw:commentRss>http://blog.riaproject.com/air/815.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>PHP實作使用SQLite資料庫</title>
		<link>http://blog.riaproject.com/php-mysql/807.html</link>
		<comments>http://blog.riaproject.com/php-mysql/807.html#comments</comments>
		<pubDate>Mon, 05 Jan 2009 01:30:37 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=807</guid>
		<description><![CDATA[我做了一個簡單的PHP實作SQLite範例，用起來還真的有一些些不習慣，大概是我在AIR當中用的太爽了，結果才發現有些SQL在PHP中使用不出來，看來還需要稍微研究跟評估一下，其範例如下： &#60;!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"&#62; &#60;html xmlns="http://www.w3.org/1999/xhtml"&#62; &#60;head&#62; &#60;meta http-equiv="Content-Type" content="text/html; charset=utf-8" /&#62; &#60;title&#62;SQLite實作&#60;/title&#62; &#60;/head&#62; &#60;body&#62; &#60;?php //建立SQLite連線 $db=sqlite_open("demo.db"); if($db){ echo("成功連接使用SQLite資料庫"); }else{ die("SQLite資料庫連接失敗..."); } //建立資料表 $sqlCommand="CREATE TABLE IF NOT EXISTS test(id INTEGER PRIMARY KEY, creation_date DATE)"; @sqlite_query($db,$sqlCommand); $sqlCommand="INSERT INTO test(creation_date) VALUES ('".date("Y-m-d H:i:s")."')"; sqlite_query($db,$sqlCommand); $sqlCommand="SELECT * FROM test ORDER BY id [...]]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/807.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>在ADO.NET C#使用SQLite資料庫</title>
		<link>http://blog.riaproject.com/net/822.html</link>
		<comments>http://blog.riaproject.com/net/822.html#comments</comments>
		<pubDate>Mon, 05 Jan 2009 01:18:55 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[.net]]></category>
		<category><![CDATA[C#]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=822</guid>
		<description><![CDATA[剛好朋友傳來一篇以C#為示範的使用SQLite資料庫的範例碼，先紀錄下來參考。 C# SourceCode Example This Example shows the basic things when working with SQLite.NET. Basically this is how all ADO.NET Data Providers work ;D Before you can use Finisar&#8217;s SQLite.NET Data Provider, you have to tell your IDE about it. This is how it is done in "Microsoft Visual C# 2005 Express Edition Beta 2&#8243; [...]]]></description>
		<wfw:commentRss>http://blog.riaproject.com/net/822.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>PHP中使用SQLite的資訊</title>
		<link>http://blog.riaproject.com/php-mysql/804.html</link>
		<comments>http://blog.riaproject.com/php-mysql/804.html#comments</comments>
		<pubDate>Sun, 04 Jan 2009 09:57:07 +0000</pubDate>
		<dc:creator>anistar</dc:creator>
				<category><![CDATA[PHP/Mysql]]></category>
		<category><![CDATA[PHP]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://blog.riaproject.com/?p=804</guid>
		<description><![CDATA[這是我在收集PHP使用SQLite的資訊，因為我正在準備實行一些計畫，需要更輕量級的資料庫，所以我把看過覺得有用的資訊收集在這，若是有興趣的人可以參考使用． SQLit的介紹： 資料庫在處理大量的資料上是很必要的，但如果資料固定且量不多，或是資料庫只會在單機上使用，且沒有讓多人使用的需求的話，就不一定需要特別架一個資料庫系統；因此，可以使用類似 SQLite 這樣的嵌入式資料庫（embedded SQL database）。 SQLite 與其他一般資料庫差異不大，一般的 SQL-92 語法都能夠使用，而且不需要建立一個資料庫系統，要使用的時候，只要在編譯程式的時候將 SQLite 程式庫一起編入就可以使用。另外，SQLite 的資料庫（database）都是以單一檔案的形式存於磁碟中，不需要再安裝資料庫伺服器軟體，所以要把資料庫複製或建立在你的電腦上是相單簡單快速。 SQLite 是一個很小的 C 語言程式庫，且本身就完全包含資料庫引擎的功能，而且可以嵌入至其他程式中，完全不用額外的設定。其特性如下： 支援ACID (Atomic, Consistent, Isolated, Durable) transaction。 Zero-configuration：無須管理者的設定及管理。 支援大部分SQL92的語法。 資料庫存在於一個單一的檔案中。 資料庫系統所在機器的位元組順序(Byte order)無關。 支援大小至2 terabytes (2^41 bytes)。 記憶體需求小：小於3萬行的C語言程式碼。小於250KB的程式空間。 大部分的資料庫操作皆快於一般資料庫系統。 簡單易用的API。 支援TCL。也有其他語言的支援可用。 註解詳細的程式碼，以及超過90%的測試。 程式庫自己包含完整的功能，無須其他額外的程式或程式庫。 為public domain，可免費使用。 serverless cross-platform － 使用unicode 不會進行data type檢查 WIKI上的說明： http://wiki.oss.org.tw/index.php/Php_sqlite PHP官方說明： http://tw2.php.net/sqlite 實例說明等我有空再寫出來給大家看，其實wiki上已經寫的很清楚了 :p]]></description>
		<wfw:commentRss>http://blog.riaproject.com/php-mysql/804.html/feed</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
	</channel>
</rss>
