<?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>Hamid Alipour on Web Development &#38; Programming - Coding Recipes &#187; SQLite</title>
	<atom:link href="http://codingrecipes.com/category/database/sqlite/feed" rel="self" type="application/rss+xml" />
	<link>http://codingrecipes.com</link>
	<description></description>
	<lastBuildDate>Thu, 12 Jan 2012 20:08:09 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.1</generator>
		<item>
		<title>SQLite And The Problem Of Storing Long Long Integers</title>
		<link>http://codingrecipes.com/sqlite-and-the-problem-of-storing-long-long-integers</link>
		<comments>http://codingrecipes.com/sqlite-and-the-problem-of-storing-long-long-integers#comments</comments>
		<pubDate>Wed, 23 Mar 2011 19:55:16 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[C Programming]]></category>
		<category><![CDATA[C/C++]]></category>
		<category><![CDATA[Databases]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[Mac]]></category>
		<category><![CDATA[Mac Programming]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=1118</guid>
		<description><![CDATA[Recently, I was trying to store a very large integer value in a SQLite column, it didn&#8217;t matter wether I used INTEGER or UNSIGNED BIG INT, SQLite rounded it for me and I was left with an integer value that wasn&#8217;t even close to what I needed. So one solution was to just use a [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/sqlite-and-the-problem-of-storing-long-long-integers/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Objective-C: A Function For Escaping Values Before Inserting Into SQLite</title>
		<link>http://codingrecipes.com/objective-c-a-function-for-escaping-values-before-inserting-into-sqlite</link>
		<comments>http://codingrecipes.com/objective-c-a-function-for-escaping-values-before-inserting-into-sqlite#comments</comments>
		<pubDate>Wed, 16 Mar 2011 01:36:17 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[iPhone SDK]]></category>
		<category><![CDATA[Mac Programming]]></category>
		<category><![CDATA[Objective-C]]></category>
		<category><![CDATA[SQLite]]></category>
		<category><![CDATA[Xcode]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=1112</guid>
		<description><![CDATA[- (NSString *)escape:(NSObject *)value { if (value == nil) return nil; NSString *escapedValue = nil; if ([value isKindOfClass:[NSString class]] &#124;&#124; [value isKindOfClass:[NSMutableString class]]) { NSString *valueString = (NSString *) value; char *theEscapedValue = sqlite3_mprintf(&#34;'%q'&#34;, [valueString UTF8String]); escapedValue = [NSString stringWithUTF8String:(const char *)theEscapedValue]; sqlite3_free(theEscapedValue); } else escapedValue = [NSString stringWithFormat:@&#34;%@&#34;, value]; return escapedValue; }]]></description>
		<wfw:commentRss>http://codingrecipes.com/objective-c-a-function-for-escaping-values-before-inserting-into-sqlite/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Get a List Of Tables In An SQLite Database</title>
		<link>http://codingrecipes.com/get-a-list-of-tables-in-an-sqlite-database</link>
		<comments>http://codingrecipes.com/get-a-list-of-tables-in-an-sqlite-database#comments</comments>
		<pubDate>Wed, 16 Mar 2011 01:34:29 +0000</pubDate>
		<dc:creator>Hamid</dc:creator>
				<category><![CDATA[Databases]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=1110</guid>
		<description><![CDATA[Here is how to do it: SELECT * FROM sqlite_master WHERE type='table';]]></description>
		<wfw:commentRss>http://codingrecipes.com/get-a-list-of-tables-in-an-sqlite-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Python SQLite3 In Multiple Threads</title>
		<link>http://codingrecipes.com/python-sqlite3-in-multiple-threads</link>
		<comments>http://codingrecipes.com/python-sqlite3-in-multiple-threads#comments</comments>
		<pubDate>Thu, 22 Apr 2010 18:38:59 +0000</pubDate>
		<dc:creator>Codehead</dc:creator>
				<category><![CDATA[Programming]]></category>
		<category><![CDATA[Python]]></category>
		<category><![CDATA[SQLite]]></category>

		<guid isPermaLink="false">http://codingrecipes.com/?p=902</guid>
		<description><![CDATA[If you create your database in a thread &#8211; usually the main thread &#8211; and try to use it in another thread your will get: ProgrammingError: SQLite objects created in a thread can only be used in that same thread.The object was created in thread id SOME_ID and this is thread id SOME_ID This is [...]]]></description>
		<wfw:commentRss>http://codingrecipes.com/python-sqlite3-in-multiple-threads/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

