Insert array into database in a single row - Stack Overflow most recent 30 from stackoverflow.com2009-11-28T12:30:15Zhttp://stackoverflow.com/feeds/question/185606http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/185606/insert-array-into-database-in-a-single-row2Insert array into database in a single rowKasper2008-10-09T01:32:31Z2008-10-10T21:03:11Z
<p>I wonder if this would be doable ? To insert an array into one field in the database.</p>
<p>For instance I have a title, I want to have that title with only one id, but it's going to be bilingually used on the website.</p>
<p>It feels a bit unnecessary to make another table to have their global ids and then another table with the actual titles linked to the table with the global id.</p>
<p>I just want to have something like this</p>
<pre><code>ID TITLE
1 Array("english title", "nederlandse titel");
</code></pre>
<p>I'm using PHP/MSYQL, so if it would be doable could you please explain in these languages.</p>
<p>Oh yeah I figured that I could format it funky and use the split function to turn it into an array again. But I wonder if I could just store it as an array right away, I case the user might type something with the same formatting (one out of a million)</p>
http://stackoverflow.com/questions/185606/insert-array-into-database-in-a-single-row/185611#1856111Answer by Optimal Solutions for Insert array into database in a single rowOptimal Solutions2008-10-09T01:36:43Z2008-10-09T01:36:43Z<p>Can I ask why you wouldnt want to utilize a relational database to its fullest potential? </p>
http://stackoverflow.com/questions/185606/insert-array-into-database-in-a-single-row/185616#1856165Answer by bmdhacks for Insert array into database in a single rowbmdhacks2008-10-09T01:39:34Z2008-10-09T01:39:34Z<p>There's really only two reasonable choices here:</p>
<p><strong>Join with another table</strong><br/>
pros: unlimited titles in unlimited languages<br/>
cons: join overhead is more computationally expensive, SQL is marginally more complex to update/insert etc</p>
<p><strong>Multiple columns</strong><br/>
eg: TITLE_EN, TITLE_NL, TITLE_DE<br/>
pros: fast to insert, select, etc<br/>
cons: limited number of languages, adding more is an ALTER TABLE</p>
<p>Given our two choices, you usually should should pick the first one. Unless you're dealing with just an obscene amount of transactions that cannot be parallelized, or you absosmurfly can ensure that you will never add languages, the extra flexibility in schema layout will save you headaches in the long run.</p>
http://stackoverflow.com/questions/185606/insert-array-into-database-in-a-single-row/185625#18562510Answer by Owen for Insert array into database in a single rowOwen2008-10-09T01:43:59Z2008-10-10T21:03:11Z<p>it's doable:</p>
<pre><code>$title = serialize($array);
</code></pre>
<p>and then to decode:</p>
<pre><code>$title = unserialize($mysql_data);
</code></pre>
<p>but as mentioned it really lessens the benefits of a database in the first place. i'd definitely suggest looking into a multi-table or multi-column option instead, depending on the amount of languages you want to support and if that number will change in the future.</p>
<p><strong>edit:</strong> a good point mentioned by <a href="http://stackoverflow.com/users/20265/dcousineau">dcousineau</a> (see comments)</p>
<blockquote>
<p>Sometimes the serialized output, even after escaping, throws characters into the query that screws things up. You may want to wrap your serialize() in base64_encode() calls and then use base64_decode() before you unserialize.</p>
</blockquote>
<p>adjusted code for those situations:</p>
<pre><code>$title = base64_encode(serialize($array) );
$title = unserialize(base64_decode($mysql_data) );
</code></pre>
http://stackoverflow.com/questions/185606/insert-array-into-database-in-a-single-row/185639#1856392Answer by Cade Roux for Insert array into database in a single rowCade Roux2008-10-09T01:50:43Z2008-10-09T01:50:43Z<p>Arrays do violate normalization; in my experience with internationalization databases I've found that having a the phrases normalized is the best design,</p>
<p>I allows you to easily make wholesale copies of rows - for instance 'es' to 'es-mx' or 'en' to 'en-US', 'en-GB', and my favorite: 'xx-piglatin'. In an array schema, you would either have to re-write every record or add complex parsing or use something more complex than arrays, like XML.</p>
<p>It is relatively easy to use <code>LEFT JOIN</code>s for find untranslated phrases for work and also to use <code>COALESCE</code> to return a default so the program remains usable even if the phrase is not translated.</p>
http://stackoverflow.com/questions/185606/insert-array-into-database-in-a-single-row/188694#1886940Answer by sebthebert for Insert array into database in a single rowsebthebert2008-10-09T19:01:11Z2008-10-09T19:01:11Z<p>Use a table with 3 columns !</p>
<p>ID, TITLE_EN, TITLE_NL</p>
<p>There is no good reason to serialize that, REALLY !</p>