<?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"
	>
<channel>
	<title>Comments on: phpLiterAdmin: A Better SQLite Database Manager?</title>
	<atom:link href="http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/feed/" rel="self" type="application/rss+xml" />
	<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/</link>
	<description>salty nothings are yummier</description>
	<pubDate>Mon, 01 Dec 2008 20:21:45 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.6.5</generator>
		<item>
		<title>By: Ian</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-108</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Tue, 29 Jul 2008 20:36:28 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-108</guid>
		<description>Yeah, it doesn't force the data types ;)</description>
		<content:encoded><![CDATA[<p>Yeah, it doesn&#8217;t force the data types <img src='http://inportb.com/wp-includes/images/smilies/icon_wink.gif' alt=';)' class='wp-smiley' /></p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiang Yio</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-92</link>
		<dc:creator>Jiang Yio</dc:creator>
		<pubDate>Mon, 21 Jul 2008 01:40:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-92</guid>
		<description>This forces you to do the type checking and validation in your own application, and allows you to make up any type you want. Perhaps phpLiterAdmin should not enforce types either, because it's meant to be used for any general SQLite database.</description>
		<content:encoded><![CDATA[<p>This forces you to do the type checking and validation in your own application, and allows you to make up any type you want. Perhaps phpLiterAdmin should not enforce types either, because it&#8217;s meant to be used for any general SQLite database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-91</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Mon, 21 Jul 2008 01:16:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-91</guid>
		<description>Thats the annoying thing, whats the point of type declarations if it doesn't listen ._.</description>
		<content:encoded><![CDATA[<p>Thats the annoying thing, whats the point of type declarations if it doesn&#8217;t listen ._.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiang Yio</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-89</link>
		<dc:creator>Jiang Yio</dc:creator>
		<pubDate>Thu, 17 Jul 2008 19:41:56 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-89</guid>
		<description>Ah, cool. SQLite is typeless, though. You write any column type you want, followed optionally by parenthesized integers... and SQLite ignores them. =p</description>
		<content:encoded><![CDATA[<p>Ah, cool. SQLite is typeless, though. You write any column type you want, followed optionally by parenthesized integers&#8230; and SQLite ignores them. =p</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-88</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Thu, 17 Jul 2008 08:17:59 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-88</guid>
		<description>I actually figured it out, if I remember the function right it is sqlite_field_name and I know of a function that can get the column type</description>
		<content:encoded><![CDATA[<p>I actually figured it out, if I remember the function right it is sqlite_field_name and I know of a function that can get the column type</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiang Yio</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-83</link>
		<dc:creator>Jiang Yio</dc:creator>
		<pubDate>Sat, 12 Jul 2008 18:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-83</guid>
		<description>I see... I don't think SQL supports that operation in itself. Perhaps the pragma table_info() is what you need: http://www.sqlite.org/pragma.html#schema

MySQL has a similar mechanism to overcome this issue.</description>
		<content:encoded><![CDATA[<p>I see&#8230; I don&#8217;t think SQL supports that operation in itself. Perhaps the pragma table_info() is what you need: <a href="http://www.sqlite.org/pragma.html#schema" rel="nofollow">http://www.sqlite.org/pragma.html#schema</a></p>
<p>MySQL has a similar mechanism to overcome this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-82</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sat, 12 Jul 2008 08:10:04 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-82</guid>
		<description>Yeah, but I cannot figure out how to get what rows are in a SQLite table without data being inside it, as I cannot find anything to do that =S</description>
		<content:encoded><![CDATA[<p>Yeah, but I cannot figure out how to get what rows are in a SQLite table without data being inside it, as I cannot find anything to do that =S</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jiang Yio</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-81</link>
		<dc:creator>Jiang Yio</dc:creator>
		<pubDate>Sat, 12 Jul 2008 06:38:53 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-81</guid>
		<description>That would be cool. I think inserting rows should follow naturally from creating tables; you really can't insert rows if you've an empty file.</description>
		<content:encoded><![CDATA[<p>That would be cool. I think inserting rows should follow naturally from creating tables; you really can&#8217;t insert rows if you&#8217;ve an empty file.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ian</title>
		<link>http://inportb.com/2008/07/12/phpliteradmin-a-better-sqlite-database-manager/#comment-80</link>
		<dc:creator>Ian</dc:creator>
		<pubDate>Sat, 12 Jul 2008 06:31:11 +0000</pubDate>
		<guid isPermaLink="false">http://www.inportb.com/?p=66#comment-80</guid>
		<description>Thanks :-) I hope to make this feature packed, yet not be bloated, and slow.

Right now I would say it has maybe a few less features (unnoticeable) than phpMiniAdmin. I am planning on adding things such as multiple database support, editing rows, inserting rows (Not sure how I will do that if nothing is in the table), maybe even a easy create table thing.</description>
		<content:encoded><![CDATA[<p>Thanks <img src='http://inportb.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' /> I hope to make this feature packed, yet not be bloated, and slow.</p>
<p>Right now I would say it has maybe a few less features (unnoticeable) than phpMiniAdmin. I am planning on adding things such as multiple database support, editing rows, inserting rows (Not sure how I will do that if nothing is in the table), maybe even a easy create table thing.</p>
]]></content:encoded>
	</item>
</channel>
</rss>
