


 <?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: SQLite basics: How to get a simple db into an iPhone app</title>
	<atom:link href="http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/feed" rel="self" type="application/rss+xml" />
	<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app</link>
	<description>development done right, with an extra touch</description>
	<lastBuildDate>Mon, 26 Jul 2010 13:12:24 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: John Gynn</title>
		<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/comment-page-1#comment-414</link>
		<dc:creator>John Gynn</dc:creator>
		<pubDate>Wed, 11 Nov 2009 17:25:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.surgeworks.com/?p=93#comment-414</guid>
		<description>Per your discussion above on using Menial and/or CoreData Managed Objects in setting up a SQLite database, do you suggest I use Menial to create the tables, relationship et. al, and to populate the database with the data I want to display, or should I use CoreData to create the schema and then somehow (perhaps you can explain) attach to the data that I put into the database using Menial?

Thoughts?

Great stuff, btw. And I&#039;m VERY impressed with the development tools and skill set you folks have at SurgeWorks.

Kind regards,

John</description>
		<content:encoded><![CDATA[<p>Per your discussion above on using Menial and/or CoreData Managed Objects in setting up a SQLite database, do you suggest I use Menial to create the tables, relationship et. al, and to populate the database with the data I want to display, or should I use CoreData to create the schema and then somehow (perhaps you can explain) attach to the data that I put into the database using Menial?</p>
<p>Thoughts?</p>
<p>Great stuff, btw. And I&#8217;m VERY impressed with the development tools and skill set you folks have at SurgeWorks.</p>
<p>Kind regards,</p>
<p>John</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radu Cojocaru</title>
		<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/comment-page-1#comment-413</link>
		<dc:creator>Radu Cojocaru</dc:creator>
		<pubDate>Thu, 10 Sep 2009 11:16:14 +0000</pubDate>
		<guid isPermaLink="false">http://blog.surgeworks.com/?p=93#comment-413</guid>
		<description>The database is included in the application. So if it work in the simulator, it will work on the device too.

If you haven&#039;t implemented too much of your data logic yet, you might want to consider using CoreData. It provides an easy (visual) way to define your models and you can chose the backed storage method from SQLite, XML or binary files.

Regarding the remote server, if you want to push data from the device to the server, you will need a database on the server and some sort of webservice (you can create it using RubyOnRails or PHP) to write to the database.</description>
		<content:encoded><![CDATA[<p>The database is included in the application. So if it work in the simulator, it will work on the device too.</p>
<p>If you haven&#8217;t implemented too much of your data logic yet, you might want to consider using CoreData. It provides an easy (visual) way to define your models and you can chose the backed storage method from SQLite, XML or binary files.</p>
<p>Regarding the remote server, if you want to push data from the device to the server, you will need a database on the server and some sort of webservice (you can create it using RubyOnRails or PHP) to write to the database.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CP Kataray</title>
		<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/comment-page-1#comment-412</link>
		<dc:creator>CP Kataray</dc:creator>
		<pubDate>Tue, 01 Sep 2009 06:41:11 +0000</pubDate>
		<guid isPermaLink="false">http://blog.surgeworks.com/?p=93#comment-412</guid>
		<description>Dear all,

I am creating an iPhone application, I need to store the details in the iPhone. The best option which I thought was using SQLite.

I would like to know the steps for adding the sqlite database to the iphone, as its working fine on the simulator.

Similarly I would like to transfer the same data to remote server. Whats the best option for the second process.

Regards,
CP Kataray.</description>
		<content:encoded><![CDATA[<p>Dear all,</p>
<p>I am creating an iPhone application, I need to store the details in the iPhone. The best option which I thought was using SQLite.</p>
<p>I would like to know the steps for adding the sqlite database to the iphone, as its working fine on the simulator.</p>
<p>Similarly I would like to transfer the same data to remote server. Whats the best option for the second process.</p>
<p>Regards,<br />
CP Kataray.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Radu Cojocaru</title>
		<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/comment-page-1#comment-411</link>
		<dc:creator>Radu Cojocaru</dc:creator>
		<pubDate>Sat, 15 Aug 2009 07:42:49 +0000</pubDate>
		<guid isPermaLink="false">http://blog.surgeworks.com/?p=93#comment-411</guid>
		<description>Andrew, you can access it like this:
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@&quot;name.db&quot;];</description>
		<content:encoded><![CDATA[<p>Andrew, you can access it like this:<br />
NSString *defaultDBPath = [[[NSBundle mainBundle] resourcePath] stringByAppendingPathComponent:@&#8221;name.db&#8221;];</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrew</title>
		<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/comment-page-1#comment-410</link>
		<dc:creator>Andrew</dc:creator>
		<pubDate>Wed, 12 Aug 2009 22:44:25 +0000</pubDate>
		<guid isPermaLink="false">http://blog.surgeworks.com/?p=93#comment-410</guid>
		<description>Yes, good post Radu.

&lt;&gt;

Where will the db file be (initially) on the iPhone to be copied to the the Documants directory?</description>
		<content:encoded><![CDATA[<p>Yes, good post Radu.</p>
<p>&lt;&gt;</p>
<p>Where will the db file be (initially) on the iPhone to be copied to the the Documants directory?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Tomislav Bilic</title>
		<link>http://surgeworksmobile.com/iphone/sqlite-basics-how-to-get-a-simple-db-into-an-iphone-app/comment-page-1#comment-409</link>
		<dc:creator>Tomislav Bilic</dc:creator>
		<pubDate>Mon, 06 Apr 2009 15:17:55 +0000</pubDate>
		<guid isPermaLink="false">http://blog.surgeworks.com/?p=93#comment-409</guid>
		<description>Good post Radu :)</description>
		<content:encoded><![CDATA[<p>Good post Radu :)</p>
]]></content:encoded>
	</item>
</channel>
</rss>
