Reporting with db4o - Stack Overflow most recent 30 from stackoverflow.com2009-12-09T19:43:05Zhttp://stackoverflow.com/feeds/question/79953http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/79953/reporting-with-db4o6Reporting with db4oTheXenocide2008-09-17T04:23:32Z2008-10-06T18:09:43Z
<p>I've used db4o with much success on many projects in the past. Over time it seems to have evolved greatly, and with modern trends like LINQ on everyone's tongue it has peaked my interest again, especially now that I know that it is starting to support transparent activation and persistence which intrigue me quite a bit, but a friend posed a very good question to me when I first mentioned db4o and, even with modern innovation, I'm still not sure how to answer it. </p>
<p>What are the best/fastest/most common methods to generate reports similar to the large cross-table complex constraint reports that can be done so effectively on platforms such as SQL? I understand quite well how much time, effort and development time are saved and even many of the performance gains, especially over ORMs, but some applications require complex reports that I'm not sure how to express using objects and object queries and I am also concerned about performance, since it can be overwhelming to optimize and maintain complex reports even on systems designed specifically for that purpose.</p>
<p>--<br />
Edit:</p>
<p>To be more clear, object data sources and the like can be used to pull db4o into the same data-rich controls as SqlDataSource et al. I've been referred to documents on the db4o site about using it with ReportViewer as well as advised to denormalize data into a reporting database, but the question is meant to pose a conceptual challenge on what can be done to accomplish the types of queries that RDBMSs perform so well on that they hold the industry. I love db4o, but I can't think of a truly efficient means of reporting on aggregate data that exists across several different types (or tables in SQL) without pulling all of the relevant objects out of the database, activating them and performing the calculations in application-level code. I may be wrong, but this seems like it couldn't hope to compete with the optimizations possible with an RDBMS. </p>
<p>I'm hoping amongst the bright minds we've managed to gather here that somebody knows something I don't or has innovative ideas for future implementation that could expand the ODBMS arena. I know that various ORMs implement methodologies for complex reporting objects and I'm wondering if anybody with experience with any of these technologies might have something creative that doesn't depend on any technologies outside of my code and db4o (I can generate reports with an SQL server alone).</p>
http://stackoverflow.com/questions/79953/reporting-with-db4o/83833#838331Answer by Judah Himango for Reporting with db4oJudah Himango2008-09-17T14:29:35Z2008-09-17T14:29:35Z<p>My limited understanding of the issue is that currently reporting is very difficult to do with DB4O, due to some missing functionality such as Count, Aggregate, etc. As it stands, you have to implement these yourself with all the poor performance that implies (e.g. activating all records, then doing a Count operation on the records).</p>
http://stackoverflow.com/questions/79953/reporting-with-db4o/84194#841940Answer by David Thibault for Reporting with db4oDavid Thibault2008-09-17T15:03:35Z2008-09-17T15:03:35Z<p>In order to work around the performance cost of reporting via db4o, I'd suggest maintaining a highly denormalized (sqlite ?) database in parallel to your db4o container. Run reports against the db and normal app logic against db4o.</p>
<p>Yes it's more work, but this way you'll have high performance reporting while keeping the usefulness of db4o.</p>
<p>If you have properly separated your data access code, it should be easy to update any code that saves objects to also update the reporting db.</p>
http://stackoverflow.com/questions/79953/reporting-with-db4o/106202#1062021Answer by Horcrux7 for Reporting with db4oHorcrux72008-09-19T22:41:52Z2008-09-19T22:41:52Z<p>I am not familiar with db4o. But I know some over reporting software. Some of it have a data interface that you can write your own connector like <a href="http://www.inetsoftware.de/" rel="nofollow">i-net Crystal-Clear</a>. If you can query a plain list of simple objects (Strings, Numbers, ... ) then it is simple.</p>
<p>Another simple solution is to write a dummy JDBC driver. There is a sample for it. The queries that you want run on your db4o will be available as virtual stored procedure. With the optional parameters you can filter your data on db4o for best performance. Such dummy JDBC driver can be written 3-4 hours.</p>
http://stackoverflow.com/questions/79953/reporting-with-db4o/169851#1698513Answer by German for Reporting with db4oGerman2008-10-04T06:08:11Z2008-10-04T06:08:11Z<p>Please see <a href="http://developer.db4o.com/Resources/view.aspx/Reference/Implementation_Strategies/Reporting/" rel="nofollow">this page</a>.</p>
<p>Best,</p>
<p>German</p>