Is Functional to Relational mapping easier than Object to Relational? - Stack Overflow most recent 30 from stackoverflow.com2009-11-30T13:50:10Zhttp://stackoverflow.com/feeds/question/218190http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/218190/is-functional-to-relational-mapping-easier-than-object-to-relational5Is Functional to Relational mapping easier than Object to Relational?WW2008-10-20T12:02:55Z2008-10-20T18:46:34Z
<p>Object-relational mapping has been well discussed, including on here. I have experience with a few approaches and the pitfalls and compromises. True resolution seems like it requires changes to the OO or relational models themselves.</p>
<p>If using a functional language, does the same problem present itself? It seems to me that these too paradigms should fit together better than OO and RDBMS. The idea of thinking in sets in an RDBMS seems to mesh with automatic parallelism that functional approaches seem to promise. </p>
<p>Does anyone have any interesting opinions or insights? What's the state of play in the industry?</p>
http://stackoverflow.com/questions/218190/is-functional-to-relational-mapping-easier-than-object-to-relational/218207#2182071Answer by Sam for Is Functional to Relational mapping easier than Object to Relational?Sam2008-10-20T12:09:43Z2008-10-20T12:09:43Z<p>I'd guess functional to relational mapping should be easier to create and use than OO to RDBMS. As long as you only query the database, that is. I don't really see (yet) how you could do database updates without side effects in a nice way.</p>
<p>The main problem I see is performance. Todays RDMS are not designed to be used with functional queries, and will probably behave poorly in quite a few cases.</p>
http://stackoverflow.com/questions/218190/is-functional-to-relational-mapping-easier-than-object-to-relational/218246#2182461Answer by Touko for Is Functional to Relational mapping easier than Object to Relational?Touko2008-10-20T12:27:50Z2008-10-20T13:27:46Z<p>I'd think that, as Sam mentioned, if the DB should be updated, the same concurrency issues have to be faced as with OO world. The functional nature of the program could maybe be even a little more problematic than the object nature because of the state of data, transactions etc of the RDBMS.</p>
<p>But for reading, the functional language could be more natural with some problem domains (as it seems to be regardless of the DB)</p>
<p>The functional<->RDBMS mapping should have no big differences to OO<->RDMBS mappings. But I think that that depends a lot on what kind of data types you want to use, if you want to develop a program with a brand new DB schema or to do something against a legacy DB schema, etc.. </p>
<p>The lazy fetches etc for associations for example could probably be implemented quite nicely with some lazy evaluation -related concepts. (Even though they can be done quite nicely with OO also)</p>
<p>Edit : With some googling I found <a href="http://haskelldb.sourceforge.net/" rel="nofollow" title="HaskellDB">HaskellDB</a> (SQL library for Haskell) - that could be worth trying?</p>
http://stackoverflow.com/questions/218190/is-functional-to-relational-mapping-easier-than-object-to-relational/218369#2183691Answer by David Schmitt for Is Functional to Relational mapping easier than Object to Relational?David Schmitt2008-10-20T13:14:13Z2008-10-20T13:14:13Z<p>The hard problems of extending the relational database are extended transactions, data-type mismatches, automated query translation and things like <a href="http://ayende.com/Blog/archive/2006/05/02/CombatingTheSelectN1ProblemInNHibernate.aspx" rel="nofollow">N+1 Select</a> that are fundamental problems of leaving the relational system and -- in my opinion -- do not change by changing the receiving programming paradigm.</p>
http://stackoverflow.com/questions/218190/is-functional-to-relational-mapping-easier-than-object-to-relational/219446#2194462Answer by Jonathan Tran for Is Functional to Relational mapping easier than Object to Relational?Jonathan Tran2008-10-20T18:46:34Z2008-10-20T18:46:34Z<p>I haven't done functional-relational mapping, per sé, but I have used functional programming techniques to speed up access to an RDBMS.</p>
<p>It's quite common to start with a dataset, do some complex computation on it, and store the results, where the results are a subset of the original with additional values, for example. The imperative approach dictates that you store your initial dataset with extra NULL columns, do your computation, then update the records with the computed values.</p>
<p>Seems reasonable. But the problem with that is it can get very slow. If your computation requires another SQL statement besides the update query itself, or even needs to be done in application code, you literally have to (re-)search for the records that you are changing after the computation to store your results in the right rows.</p>
<p>You can get around this by simply creating a new table for results. This way, you can just always insert instead of update. You end up having another table, duplicating the keys, but you no longer need to waste space on columns storing NULL -- you only store what you have. You then join your results in your final select.</p>
<p>I (ab)used an RDBMS this way and ended up writing SQL statements that looked mostly like this...</p>
<pre><code>create table temp_foo_1 as select ...;
create table temp_foo_2 as select ...;
...
create table foo_results as
select * from temp_foo_n inner join temp_foo_1 ... inner join temp_foo_2 ...;
</code></pre>
<p>What this is essentially doing is creating a bunch of immutable bindings. The nice thing, though, is you can work on entire sets at once. Kind of reminds you of languages that let you work with matrices, like Matlab.</p>
<p>I imagine this would also allow for parallelism much easier.</p>
<p>An extra perk is that types of columns for tables created this way don't have to be specified because they are inferred from the columns they're selected from.</p>