<?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: Multilanguage database design approach</title>
	<atom:link href="http://www.gsdesign.ro/blog/multilanguage-database-design-approach/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/</link>
	<description>Just another developer blog</description>
	<lastBuildDate>Thu, 29 Jul 2010 03:41:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: Seth</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7771</link>
		<dc:creator>Seth</dc:creator>
		<pubDate>Wed, 07 Jul 2010 07:58:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7771</guid>
		<description>after using #4 model i switch to #2 witch i think is better, on #4 model i have had 166 tables and almost 1gb of data and on #2 we have 9 tables and 70mb of data and the speed is the same for the traffic we have (the website has 17 languages)&lt;br&gt;&lt;br&gt;but in the end i guess the model differs from project to project</description>
		<content:encoded><![CDATA[<p>after using #4 model i switch to #2 witch i think is better, on #4 model i have had 166 tables and almost 1gb of data and on #2 we have 9 tables and 70mb of data and the speed is the same for the traffic we have (the website has 17 languages)</p>
<p>but in the end i guess the model differs from project to project</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gabi solomon</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7742</link>
		<dc:creator>gabi solomon</dc:creator>
		<pubDate>Tue, 27 Apr 2010 01:30:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7742</guid>
		<description>That maybe true for some projects. But if you want the ability to edit the translations, for example for pages content then a DB aproach is a must.</description>
		<content:encoded><![CDATA[<p>That maybe true for some projects. But if you want the ability to edit the translations, for example for pages content then a DB aproach is a must.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: soft</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7741</link>
		<dc:creator>soft</dc:creator>
		<pubDate>Tue, 27 Apr 2010 01:18:16 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7741</guid>
		<description>Nice solution. but I think something with txt files and constants is more better when you want to more  languages.</description>
		<content:encoded><![CDATA[<p>Nice solution. but I think something with txt files and constants is more better when you want to more  languages.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: CC</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7738</link>
		<dc:creator>CC</dc:creator>
		<pubDate>Sat, 03 Apr 2010 00:23:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7738</guid>
		<description>If you&#039;re working with a huge amount amount of tables (think in the hundreds) then #3 is easier to maintain than #4.</description>
		<content:encoded><![CDATA[<p>If you&#39;re working with a huge amount amount of tables (think in the hundreds) then #3 is easier to maintain than #4.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: 01Kuzma</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7729</link>
		<dc:creator>01Kuzma</dc:creator>
		<pubDate>Tue, 23 Feb 2010 22:13:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7729</guid>
		<description>Hello!&lt;br&gt;Thank you for your tutorial.&lt;br&gt;I&#039;ve question:&lt;br&gt;in your sql statement you wrote: ...WHERE `map_landmarks_translation`.`language_id`=&#039;1&#039;&lt;br&gt;So `map_landmarks_translation` should be separate table, or it&#039;s wrong statement and it should look like:......WHERE `pages_translation`.`language_id`=&#039;1&#039;&lt;br&gt;Thank you!</description>
		<content:encoded><![CDATA[<p>Hello!<br />Thank you for your tutorial.<br />I&#39;ve question:<br />in your sql statement you wrote: &#8230;WHERE `map_landmarks_translation`.`language_id`=&#39;1&#39;<br />So `map_landmarks_translation` should be separate table, or it&#39;s wrong statement and it should look like:&#8230;&#8230;WHERE `pages_translation`.`language_id`=&#39;1&#39;<br />Thank you!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kief</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7719</link>
		<dc:creator>Kief</dc:creator>
		<pubDate>Fri, 29 Jan 2010 01:03:21 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7719</guid>
		<description>what about&lt;br&gt;&lt;br&gt;table pages_translation&lt;br&gt;-- page_id (int)&lt;br&gt;-- language_id (int)&lt;br&gt;-- title (text)&lt;br&gt;-- content (text) &lt;br&gt;&lt;br&gt;with ( page_id, language_id ) as primary key</description>
		<content:encoded><![CDATA[<p>what about</p>
<p>table pages_translation<br />&#8211; page_id (int)<br />&#8211; language_id (int)<br />&#8211; title (text)<br />&#8211; content (text) </p>
<p>with ( page_id, language_id ) as primary key</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Nima</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7677</link>
		<dc:creator>Nima</dc:creator>
		<pubDate>Mon, 23 Nov 2009 07:15:25 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7677</guid>
		<description>Hi,&lt;br&gt;&lt;br&gt;I found this article really helpful!&lt;br&gt;I liked the fact that you compared different approaches clearly,&lt;br&gt;I will be adapting the #4 as well, &lt;br&gt;It suits best my needs.&lt;br&gt;&lt;br&gt;Thank you again&lt;br&gt;Nima</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>I found this article really helpful!<br />I liked the fact that you compared different approaches clearly,<br />I will be adapting the #4 as well, <br />It suits best my needs.</p>
<p>Thank you again<br />Nima</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: gabi solomon</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7667</link>
		<dc:creator>gabi solomon</dc:creator>
		<pubDate>Sun, 08 Nov 2009 02:52:23 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7667</guid>
		<description>that is an interesting solution, i chose to put all the languages in the auxiliary table so that i would have to code the decision of where to look for the strings in the main or auxiliary table.</description>
		<content:encoded><![CDATA[<p>that is an interesting solution, i chose to put all the languages in the auxiliary table so that i would have to code the decision of where to look for the strings in the main or auxiliary table.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: agvozden</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7665</link>
		<dc:creator>agvozden</dc:creator>
		<pubDate>Mon, 26 Oct 2009 16:40:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7665</guid>
		<description>I think that can be differently solved.&lt;br&gt;And that is that you have a text with the language identifier and is retained within a single system.&lt;br&gt;I&#039;d only auxiliary table for a connection to the texts in other languages if we need this thing ...</description>
		<content:encoded><![CDATA[<p>I think that can be differently solved.<br />And that is that you have a text with the language identifier and is retained within a single system.<br />I&#39;d only auxiliary table for a connection to the texts in other languages if we need this thing &#8230;</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: solomongaby</title>
		<link>http://www.gsdesign.ro/blog/multilanguage-database-design-approach/comment-page-1/#comment-7601</link>
		<dc:creator>solomongaby</dc:creator>
		<pubDate>Wed, 10 Jun 2009 16:23:47 +0000</pubDate>
		<guid isPermaLink="false">http://www.gsdesign.ro/blog/?p=304#comment-7601</guid>
		<description>thats corect</description>
		<content:encoded><![CDATA[<p>thats corect</p>
]]></content:encoded>
	</item>
</channel>
</rss>
