active questions tagged orm - Stack Overflowmost recent 30 from stackoverflow.com2009-11-27T06:26:13Zhttp://stackoverflow.com/feeds/tag/ormhttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1806897/dao-orm-and-queries0DAO, ORM and QueriesStillLearning2009-11-27T05:22:02Z2009-11-27T05:22:02Z
<p>There is a need to update one field to the same value in a heap of records. Using the DAO/ORM structure, I would retrieve each parent object, loop through each child object, update it's field, and then save it.</p>
<p>It would be faster to just write the SQL: update table set field = value where criteria = specified.</p>
<p>How do I fit these things together? Do I just stick with the dao structure:</p>
<pre><code>for (Table t : getTableDao().getTables()){
for(Child c : t.getChildren()){
c.setValue(1);
getChildrenDao().save(c);
}
}
</code></pre>
<p>Cheers.</p>
http://stackoverflow.com/questions/1801187/self-referential-manytomany-convention-in-cakephp0Self-Referential ManyToMany Convention in CakePHPantiver2009-11-26T02:06:03Z2009-11-27T02:55:21Z
<p>I have an existing data model where I can rename things freely to match <a href="http://book.cakephp.org/view/24/Model-and-Database-Conventions" rel="nofollow">CakePHP's conventions</a>. I have a type of graph node, where a node can have an arbitrary number of child nodes and an arbitrary number of parent nodes (uni-directional relationships).</p>
<p>Here's the table of nodes, following CakePHP's conventions:</p>
<pre><code>Table: nodes
Column: node_id (INT)
Column: description (TEXT)
</code></pre>
<p>My question is what the join table should look like? Here is what it looks like now:</p>
<pre><code>Table: nodes_nodes
Column: parent_node_id (INT)
Column: child_node_id (INT)
</code></pre>
<p>And what the documentation implies it should be:</p>
<pre><code>Table: nodes_nodes
Column: node_id (INT)
Column: node_id (INT)
</code></pre>
<p>Notice that two column names are the same, which obviously won't work. What should these two columns be called? Or can CakePHP's conventions not handle this situation without configuration?</p>
http://stackoverflow.com/questions/1760184/recommendations-for-a-erm-dmd-and-orm-diagram-creation-application-for-osx0Recommendations for a ERM, DMD and ORM Diagram Creation Application for OSXAsh2009-11-19T00:44:03Z2009-11-27T02:08:31Z
<p>I need to produce several ERM, DMD and ORM diagrams for several projects I am working on. Obviously I'd like them to be a sleek and professional as possible, and while a simple Google search provides a plethora of options, they're all pay-for-use.</p>
<p>Are there any free (or open source) diagram creators available for Mac OSX which produce "sexy-enough" diagrams suitable and professional enough for use in client-accessible specification documents?</p>
http://stackoverflow.com/questions/1804645/how-to-set-an-fk-column-value-without-retrieve-it0How to set an FK column value without retrieve itYucel2009-11-26T16:31:40Z2009-11-27T01:26:11Z
<p>Hi, i want to set a new value to my entity objects FK column, but i cant find the property to set. I dont want to get record from db.</p>
<p>I have a db like that</p>
<p><strong>Db Tables:</strong></p>
<pre><code>Concept ConceptType
-Id (PK) -Id(PK)
-Name -Name
-ConceptTypeId(FK) (ALLOW NULL)
</code></pre>
<p><strong>Code:</strong></p>
<pre><code>Concept conceptToUpdate = new Concept() { Id = 1 };
ConceptType conceptType = new ConceptType() { Id = 5 };
db.AttachTo("Concept", conceptToUpdate);
db.AttachTo("ConceptType", conceptType);
conceptToUpdate.ConceptType = conceptType;
db.SaveChanges();
</code></pre>
<p>This code is working if ConceptTypeId(FK) column is NULL before. If it is not NULL it gives exception. I trace the sql query, the problem is on sql query because it is checking that old value is NULL :S</p>
<p><strong>SQL QUERY: (from SQL Profiler)</strong></p>
<pre><code>exec sp_executesql N'update [dbo].[Concept]
set [ConceptTypeId] = @0
where (([Id] = @1) and [ConceptTypeId] is null)
',N'@0 int,@1 int',@0=5,@1=1
</code></pre>
http://stackoverflow.com/questions/1682165/when-should-one-avoid-using-nhibernates-lazy-loading-feature0When should one avoid using NHibernate's lazy-loading feature?Mark Rogers2009-11-05T17:20:09Z2009-11-26T16:01:46Z
<p>Most of what I hear about NHibernate's lazy-loading, is that it's better to use it, than not to use it. It seems like it just makes sense to minimize database access, in an effort to reduce bottlenecks. But few things come without trade-offs, certainly it slightly limits design by forcing you to have <code>virtual</code> properties. But I've also noticed that some developers turn lazy-loading off on certain often-used objects.</p>
<p>This makes me wonder if there are some definite situations where data-access performance is hurt by using lazy-loading. </p>
<p>So I wonder, when and in what situations should I avoid lazy-loading one of my NHibernate-persisted objects?</p>
<p>Is the downside to lazy-loading merely in additional processing time, or can nhibernate lazy-loading also increase the data-access time (for instance, by making additional round-trips to the database)? </p>
<p>Thanks!</p>
http://stackoverflow.com/questions/1800077/multi-database-transactional-system-asp-net-mvc2Multi-Database Transactional System & ASP.NET MVCKyle Hodgson2009-11-25T21:27:16Z2009-11-26T15:51:49Z
<p>So I have a challenge to build a site that people online can use to interact with organizations.: <a href="http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application">http://stackoverflow.com/questions/1691058/asp-net-mvc-customer-application</a></p>
<p>One of the requirements is financial processing and accounting.</p>
<p>I'm very comfortable using SQL Transactions and stored procedures to do this; i.e. CreateCustomer also creates an entity, and an account record. We have a stored procedure to do this, that does a begin transaction, creates some setup records we need, then does a commit. I'm not seeing a good way to do this with an ORM, and after reading some great <a href="http://blogs.tedneward.com/2006/06/26/The+Vietnam+Of+Computer+Science.aspx" rel="nofollow">blog articles</a> I'm starting to wonder if I'm going down the wrong path. </p>
<p>Part of the complexity here is the data itself:</p>
<ol>
<li><p>I'm querying x databases (one per existing customer) to get some of my data, though my app has its own data store as well. I need to query the x databases, run stored procedures on the x databases, and also to my own datastore.</p></li>
<li><p>I'm not seeing strong support for things like stored procedures and thereby transactions, though it does seem to be present.</p></li>
</ol>
<p>Maybe I'm just trying to make my app a nail here, cause the MVC hammer is sooo shiny. I'm plenty comfortable with raw ADO.NET of course, but I'm in love with the expressive feel to writing Linq code in C# and I'd rather not give up on it.</p>
<p>Down to the question:</p>
<p>Is this a bad idea? Should I try to use Linq / Entity Framework, or something like nHibernate... and stick with the ORM pattern or should I trash it and use raw ADO.NET data access? </p>
<p><strong>Edit:</strong> In the perfect world, I think... I'd use Linq to let developers query expressively in code, no need to restrict that yet. But for things like "performNewFinancialTransaction", well, I'd like that to be a stored procedure.</p>
<p><strong>Edit 2:</strong> a note on scale; from a queries per second standpoint this app is not "huge". But, from a data complexity perspective, it does need to query against 50+ databases (all identical, or close to it) to read data from an external application and publish data back to that application. ORM feels right when dealing with "my" data store, but feels very wrong for accessing the data from the external application.</p>
http://stackoverflow.com/questions/1802280/orm-for-sql-scripting0ORM for SQL Scriptingkarmic2009-11-26T08:25:19Z2009-11-26T09:02:20Z
<p>What is the best way to run simple sql scripts in a database (preferably db implementation agnostically)?</p>
<p>So, for illustration purposes, using your best/suggested way, i'd like to see a script that creates a few tables with names from an array ['cars_table', 'ice_cream_t'], deletes all elements with id=5 in a table, and does a join between two tables and prints the result formatted in some nice way.</p>
<ol>
<li>I've heard of Python and PL/SQL to
do this </li>
<li>Ruby/Datamapper seems very
attractive</li>
<li>Java + JDBC, maybe</li>
<li>Others?</li>
</ol>
<p>Some of these are mostly used in a full application or within a framework. I'd like to see them used simply in scripts.</p>
http://stackoverflow.com/questions/1654140/orm-persistence-layer-advice13ORM/Persistence layer Adviceemaster702009-10-31T11:36:13Z2009-11-26T00:19:37Z
<p>Hi all<br/>
I'm starting a new project and I'm looking around for either a very good ORM or for a non-SQL-based persistence layer.<br/>
For this project, I really don't care on how the data is persisted, as long as it can be queried and stored with a reasonable speed and most importantly with simple queries.<br/>
Concurrency should be handled seamlessly (the front-end will be on another tier and there'll be several simultaneous users, although not necessarily working on the same data) and the less I have to focus on the data layer (easy queries, automatic lazy loading etc) the better.<br/>
I also want to avoid at all cost having to mess with string-based queries so tools supporting LINQ or otherwise intuitive and possibly strongly typed queries get a big bonus.<br/>
Finally working with POCO objects is another thing I'd really want to do<br/>
Here's a list of products I've evaluated and why they don't fit, just so that I don't see any advice about using those:</p>
<ul>
<li>NHibernate: crazy xml stuff, too much set up, high maintenance complexity and cost for model changes, session factories are messy and don't fit well with my needs</li>
<li>Castle ActiveRecord: NHibernate based, little documentation plus some problems related to NHibernate still apply. Furthermore, to get decent models it takes so many attributes that one is better off creating the schema manually, and the way relations are handled is a shame.</li>
<li>Linq To SQL: missing POCO objects and according to MS it won't improve much overtime (EF is what they're committed to)</li>
<li>Entity Framweork: although in v4 POCO objects are possible, they're still pretty hacky and force you into doing too much manual work to set things up. Besides, v4 is just a beta</li>
<li>LLBLGen Pro: good, especially with SelfServicing adapters, but not POCO. Also, the LINQ provider isn't perfect yet. Finally, deleting a group of objects is not possible via LINQ which results in mixing APIs (one of which is far from intuitive) and that I don't like.</li>
<li>XPO: anything but intuitive, very slow, concurrency issues, not POCO</li>
<li>SubSonic SimpleRepository: for a few minutes I thought I was dreaming. The deam came to an end as I figured out how the thing didn't handle relationships</li>
</ul>
<p>I've also looked at MongoDB and CouchDB but in those cases the catches with related objects looked like they required too much testing before getting things right. Besides none of them offers strongly typed queries.<br/><br/>
Thanks in advance for your suggestions!</p>
http://stackoverflow.com/questions/1800183/where-identitymap-belongs-unitofwork-or-repository0Where IdentityMap belongs: UnitOfWork or Repository?Martin2009-11-25T21:46:08Z2009-11-25T21:54:51Z
<p>If I implement some simple OR/M tool, where do I put identity map? Obviously, each Repozitory should have access to its own identity map, so it can register loaded objects (or maybe DataMapper is the one who registers objects in IdentityMap?).</p>
<p>And when I commit unit of work, I also need to access the identity map to see which entity is dirty and which is clean (or I am wrong again and there is some outer object which calls RegisterClean/RegisterDirty methods of my UnitOfWork class? Then what object does this?). </p>
<p>Does this mean that I should implement IdentityMap as a completely independent object which contains inner IdentityMaps for each entity type?</p>
<p>Really confused about how IdentityMap, Repozitory and UnitOfWork work all together.</p>
http://stackoverflow.com/questions/1800178/whats-the-best-strategy-to-invalidate-orm-cache-1What's the best strategy to invalidate ORM cache?unknown (google)2009-11-25T21:44:31Z2009-11-25T21:54:09Z
<p>We have our ORM pretty nicely coupled with cache, so all our object gets are cached. Currently we invalidate our objects before and after our insert/update/delete of our object. What's your experience?</p>
http://stackoverflow.com/questions/452385/what-java-orm-do-you-prefer-and-why4What Java ORM do you prefer, and why?Mike2009-01-16T23:17:21Z2009-11-25T19:30:53Z
<p>It's a pretty open ended question. I'll be starting out a new project and am looking at different ORMs to integrate with database access.</p>
<p>Do you have any favorites?
Are there any you would advise staying clear of?</p>
http://stackoverflow.com/questions/1795649/jpa-persisting-a-one-to-many-relationship1JPA - Persisting a One to Many relationshipDenise2009-11-25T09:17:22Z2009-11-25T12:31:02Z
<p>Hi,</p>
<p>Maybe this is a stupid question but it's bugging me.</p>
<p>I have a bi-directional one to many relationship of Employee to Vehicles. When I persist an Employee in the database for the first time (i.e. it has no assigned ID) I also want its associated Vehicles to be persisted. </p>
<p>This works fine for me at the moment, except that my saved Vehicle entity is not getting the associated Employee mapped automatically, and in the database the employee_id foreign key column in the Vehicle table is null.</p>
<p>My question is, is it possible to have the Vehicle's employee persisted at the same time the Employee itself is being persisted? I realise that the Employee would need to be saved first, then the Vehicle saved afterwards. Can JPA do this automatically for me? Or do I have to do something like the following:</p>
<pre><code>Vehicle vehicle1 = new Vehicle();
Set<Vehicle> vehicles = new HashSet<Vehicle>();
vehicles.add(vehicle1);
Employee newEmployee = new Employee("matt");
newEmployee.setVehicles(vehicles);
Employee savedEmployee = employeeDao.persistOrMerge(newEmployee);
vehicle1.setAssociatedEmployee(savedEmployee);
vehicleDao.persistOrMerge(vehicle1);
</code></pre>
<p>Thanks!</p>
<p>Edit: As requested, here's my mappings (without all the other methods etc.)</p>
<pre><code>@Entity
public class Employee {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="employee_id")
private Long id;
@OneToMany(mappedBy="associatedEmployee", cascade=CascadeType.ALL)
private Set<Vehicle> vehicles;
...
}
@Entity
public class Vehicle {
@Id
@GeneratedValue(strategy = GenerationType.AUTO)
@Column(name="vehicle_id")
private Long id;
@ManyToOne
@JoinColumn(name="employee_id")
private Employee associatedEmployee;
...
}
</code></pre>
<p>I just realised I should have had the following method defined on my Employee class:</p>
<pre><code>public void addVehicle(Vehicle vehicle) {
vehicle.setAssociatedEmployee(this);
vehicles.add(vehicle);
}
</code></pre>
<p>Now the code above will look like this:</p>
<pre><code>Vehicle vehicle1 = new Vehicle();
Employee newEmployee = new Employee("matt");
newEmployee.addVehicle(vehicle1);
Employee savedEmployee = employeeDao.persistOrMerge(newEmployee);
</code></pre>
<p>Much simpler and cleaner. Thanks for your help everyone!</p>
http://stackoverflow.com/questions/1785667/list-group-multiple-instances-of-an-object-based-on-manytomany-field-in-django0List, Group multiple instances of an object based on ManyToMany field in DjangoChris Miller2009-11-23T20:17:43Z2009-11-25T06:41:05Z
<p>Given the following models, I need to return a list of <strong>Links</strong> for each <strong>Place</strong>, grouped by <strong>Category</strong>.</p>
<pre><code>class Place(models.Model):
name = models.CharField(max_length=100)
class Category(models.Model):
name = models.CharField(max_length=100)
description = models.TextField()
class Link(models.Model):
name = models.CharField(max_length=100)
url = models.URLField()
place = models.ManyToManyField('Place')
categories = models.ManyToManyField('Category')
description = models.TextField()
featured = models.BooleanField()
published = models.BooleanField()
date_added = models.DateField(auto_now_add=True)
</code></pre>
<p>The result would look something like:</p>
<p><strong>Some Place</strong>
<br />Information about Some Place ... (not really important to question)</p>
<p><strong>Banks</strong>
<br />Bank of America
<br />Commerce Bank
<br />First National Bank</p>
<p><strong>Financial Services</strong>
<br />Bank of America
<br />Edward Jones</p>
<p><strong>Loans</strong>
<br />Commerce Bank
<br />First National Bank</p>
<p>As you can see, a <strong>Link</strong> should be listed in every <strong>Category</strong> in which it belongs.</p>
<p>I tried to loop through categories and concatenate the querysets, but with ManyToMany fields, it doesn't seem possible to do the sort necessary that can be passed into the template and grouped there.</p>
http://stackoverflow.com/questions/1354305/when-is-lazy-evaluation-not-useful1When is lazy evaluation not useful?Cherian2009-08-30T17:00:14Z2009-11-24T20:26:00Z
<p>Delay execution is almost always a boon. But then there are cases when it’s a problem and you resort to “fetch” (in Nhibernate) to eager fetch it. </p>
<p>Do you know practical situations when lazy evaluation can bite you back…?</p>
http://stackoverflow.com/questions/1790290/what-to-use-for-a-flexible-data-access-layer-oledb-or0What to use for a flexible data access layer - OLEDB or...?Martin2009-11-24T14:06:53Z2009-11-24T19:29:02Z
<p>I am creating a quick and dirty prototype (C#) of an object-relational mapping tool. I would like to support at least two kinds of databases - one will be Microsoft SQL Server 2005/2008 and the other most probably MySQL.</p>
<p>Is there any way to use a single data base access mechanism for both database engines and what would it be? </p>
<p>Of course, I know that there will be differences in SQL query syntax, but in my case it is not that important - I'll use a tool to generate SQL queries which suit the certain db engine and user will be able to optimize those SQL queries.</p>
<p>The main idea is to have as flexible data provider solution as possible. Can it be done or not and how can it be done easier?
Note that I am not using this for a production system, just for a prototype, but still I'm curious how it is achieved in production OR/M tools - are they using completely separate access mechanism for each data provider or there are something common? And are they using DataReaders or there is some more appropriate way to retrieve data if I intend to transform data to business objects?</p>
<p>Thanks for any ideas, links etc.</p>
http://stackoverflow.com/questions/1791919/maintaining-auto-generating-ibatis-sql-maps0Maintaining / Auto-generating IBatis SQL Maps?aron2009-11-24T18:15:31Z2009-11-24T18:44:19Z
<p>Hello,
I just started a new job and inherited the project from hell.
Hell = {2 years over schedule, overly complex, uses both oracle and sql server}</p>
<p>There are 100+ stored procedures in the Oracle server and each one has a IBatis SQL Map. <em>Some share the same result map.</em> The DBA likes to change stores procs on a daily basis and not tell me.</p>
<p><strong>Question:
Are there any tools out there that can examine all the IBatis SQL Maps in the solution.
Ideally it would verify:</strong></p>
<ol>
<li>Store Procedure exists</li>
<li>Store Procedure parameters match the ones in the parameter map</li>
<li>Store Procedure result [column names] match the ones in the result map</li>
<li>Store Procedure result is not missing anything specified on the result map</li>
<li>The object property titles in the result map match the ones listed on the result map</li>
</ol>
<p>Background: I normally use just SQL Server and SubSonic 2.2 as an ORM. This way I just execute a command and my DAL is magically auto-generated, this way if a column that I need is missing I get a nice easy to understand compile time error and not a confusing run time error. Is there a similar tool I could use here?</p>
<p>thanks for your help!</p>
http://stackoverflow.com/questions/1791924/whats-the-best-way-to-make-small-schema-updates-with-doctrine-symfony0What's the best way to make small schema updates with Doctrine/Symfony?Josh Nankin2009-11-24T18:15:43Z2009-11-24T18:29:13Z
<p>What's the best way to make small schema updates to your symfony/doctrine application?</p>
<p>My issue is, I'm working on a new side-project and occasionally find myself adding a new column here, a new column there as i find the need. However, my DB already has existing data and I dont want to run a complete rebuild and drop my DB with the changes each time.</p>
<p>I also dont want to write fixtures. They're annoying, and it's much easier to use my application to insert data and keep it around while developing. I also dont want to write a migration to add one or two columns, especially when I'm doing this a lot.</p>
<p>Are my only choices to:</p>
<ol>
<li>make changes to the schema file and
wipe the db after every schema change -or-</li>
<li>update the schema file
and manually run alter statements on
my db</li>
</ol>
<p>Ultimately, what I'd like to do is either make changes to my db, and have symfony figure out what the schema file should look like, or make changes to the schema file and have symfony figure out what new changes to make to the existing database.</p>
<p>Please help!</p>
<p>Thanks. First time using SO, can't wait to see if i get a response!</p>
http://stackoverflow.com/questions/1790594/how-might-i-set-up-data-plumbing-for-silverlight-to-mysql-in-my-situation1How might I set up data plumbing for Silverlight to MySQL in my situation?Ben McCormack2009-11-24T14:55:07Z2009-11-24T15:09:17Z
<p>In short: <strong>What is a good method for setting up read-only data access from Silverlight to a MySQL database?</strong></p>
<p><hr>
Here are the details of my situation:</p>
<p>I'm currently trying to set up a Silverlight application to present data from a MySQL database. Currently, I need to set-up <strong>read-only</strong> access to the MySQL database (I may set up other tables for complete <a href="http://en.wikipedia.org/wiki/Create,_read,_update_and_delete" rel="nofollow">CRUD</a> functionality at a later, date, but for these particular tables, I'm only ever going to be concerned with the <em>retrieve</em> aspect).</p>
<p>I <a href="http://stackoverflow.com/questions/1493196/read-only-entity-framework-im-trying-to-use-ria-services-ef-and-silverlight">tried setting it up using RIA Services (CTP July 2009) with Entity Framework</a>, but I <a href="http://stackoverflow.com/questions/1504241/need-help-debugging-having-trouble-getting-data-to-silverlight-app-through-ria-s">had trouble debugging it</a> and ended up <a href="http://stackoverflow.com/questions/1574697/how-do-i-modify-the-source-code-of-the-mysql-connector-and-install-it-on-my-pc">trying to recompile the source code from the MySQL ADO.NET connector</a> in order to <a href="http://stackoverflow.com/questions/1574555/how-do-i-add-a-modified-dll-to-the-global-assembly-cache">install custom DLLs into the GAC</a>. I wasn't able to get any of this stuff to work correctly.</p>
<p>My problem was that I had date values stored as <code>0000-00-00</code> in lots of my MySQL tables. The MySQL ADO.NET Connector throws an exception everytime it tries to bring down a row with an invalid date in it. I would try to recompile the connector (see links above), but that's feeling very much like a hack. I would try to update the values in the MySQL database to be <a href="http://dev.mysql.com/doc/refman/5.0/en/date-and-time-types.html" rel="nofollow">within the appropriate spec for dates</a>, but our IT manager (and effectively our DBA) does not want to do it.</p>
<p>I don't mind learning to work with LINQ (LINQ-to-<em>what</em>?), but I want to avoid concatenating my own strings of SQL commands. Because of the Date restrictions, I need a way to specify <code>Case When orders.OrderDate = '0000-00-00' Then '0001-01-01' Else orders.OrderDate End</code> for pretty much every date instance.</p>
<p>I'm especially interested to hear from folks who have worked with .NET and MySQL together. What will work in my situation?</p>
http://stackoverflow.com/questions/1459392/orm-and-net-code-protectors0ORM and .NET Code ProtectorsAkash Kava2009-09-22T10:56:56Z2009-11-24T06:59:00Z
<p>We are about to use Code Protectors (Obsfucation as well as Native Compilation), I assume ORMs will be dependent little bit on Reflection and I am worried will Obsfucation and Native Compilation protection techniques create any problems?</p>
<p>Has anyone tried successful ORM and Code Protection for any good desktop application? We are having WPF Desktop Application.</p>
<p>Our primary language for development is C# and we are using our custom ORM but I want to evaluate any commercial ORM or ADO.NET EF etc as well.</p>
<p>Question is not about what is Code Protection and which one I should use, I am trying to ask about the effect of protection on ORM.</p>
http://stackoverflow.com/questions/1786343/preupdate-not-firing-when-adding-to-a-collection1PreUpdate not firing when adding to a collectionAdam B2009-11-23T21:59:41Z2009-11-23T23:38:15Z
<p>I have a JPA annotated class which contains a collection like so:</p>
<pre><code>@Entity
public class Employee {
@Id
private int id;
@Basic
private String name;
@OneToMany
@JoinTable(name = "ORG", joinColumns = @JoinColumn(name="MINION"),
inverseJoinColumns = @JoinColumn(name="EMP"))
private List<Employee> minions = new ArrayList<Employee>();
@PreUpdate
public void preUpdate(){ ... }
}
</code></pre>
<p>What I'm seeing is that if I have a managed Employee entity and I add to it's collection of minions the <code>preUpdate</code> method is not getting invoked. A new row is added to the mapping table in the DB so I know the update is going through. If I change a property directly on the Employee, like name, then <code>preUpdate</code> fires as expected when the transaction is committed.</p>
<p>Is there a way to get PreUpdate to fire when a mapped collection is modified? Or is there some other technique or Hibernate specific annotation for detecting when this happens?</p>
http://stackoverflow.com/questions/26971/nhibernate-vs-linq-to-sql21NHibernate vs LINQ to SQLManu2008-08-25T21:39:35Z2009-11-23T23:32:13Z
<p>As someone who hasn't used either technology on real-world projects I wonder if anyone knows how these two complement each other and how much their functionalities overlap?</p>
http://stackoverflow.com/questions/619698/marrying-up-consumer-defined-aggregates-e-g-sql-counts-with-pure-model-objec1Marrying up consumer-defined aggregates (e.g. SQL counts) with 'pure' model objects?Jan Zich2009-03-06T17:28:46Z2009-11-23T22:28:22Z
<p>What is the best practice of introducing custom (typically volatile) data into entity model classes? This may sound like a bad practice first, but it seems to be quite a common scenario. In our recent web application we have developed a proper model and in most cases we are fine with loading model entities. But there are cases where we cannot afford loading an entire hierarchy of entities; we need to load, say, results of a couple of SQL COUNT’s or possibly some additional information alongside (or embedded inside) the model entities. So basically, the requirements and conditions are:</p>
<ol>
<li><p>It’s a web application where 99.9999999999% of all operations are read operations.</p></li>
<li><p>They don’t need to process or do any complicated business logic. We just need to get data quickly to HTML.</p></li>
<li><p>In several performance critical cases, we need to load results of SQL aggregates which don’t fit any model properties.</p></li>
<li><p>We need an extensible way to introduce any new custom data if needed.</p></li>
</ol>
<p>How do you usually solve this issue without working too much around your ORM (for instance raw data from db)? I’m sure this has been discussed many times, but I cannot figure out a good Google query to find anything useful.</p>
<p><strong>Edit</strong>: Since I later realized the question was not very well formed, I decided to reformulate it and start a <a href="http://stackoverflow.com/questions/621514">new one</a>.</p>
http://stackoverflow.com/questions/1779750/making-orm-with-pythons-storm-1Making ORM with Python's StormMasi2009-11-22T19:47:22Z2009-11-23T19:14:58Z
<p>The question is based on <a href="http://stackoverflow.com/questions/1779239/converting-sql-commands-to-pythons-orm">the thread</a>, since I observed that Storm allows me reuse my SQL-schemas.</p>
<p><strong>How can you solve the following error message in Storm?</strong></p>
<p>The code is based on Jason's answer and on Storm's manual.</p>
<pre><code>import os, pg, sys, re, psycopg2, storm
from storm.locals import *
from storm import *
class Courses():
subject = Unicode()
database = create_database("postgres://naa:123@localhost:5432/tk")
store = Store(database)
course = Courses()
course.subject = 'abcd'
store.add(course)
</code></pre>
<p>It gives you</p>
<pre><code>Traceback (most recent call last):
File "<stdin>", line 13, in <module>
File "/usr/lib/python2.6/dist-packages/storm/store.py", line 245, in add
obj_info = get_obj_info(obj)
File "/usr/lib/python2.6/dist-packages/storm/info.py", line 40, in get_obj_info
obj_info = ObjectInfo(obj)
File "/usr/lib/python2.6/dist-packages/storm/info.py", line 162, in __init__
self.cls_info = get_cls_info(type(obj))
File "/usr/lib/python2.6/dist-packages/storm/info.py", line 51, in get_cls_info
cls.__storm_class_info__ = ClassInfo(cls)
File "/usr/lib/python2.6/dist-packages/storm/info.py", line 69, in __init__
raise ClassInfoError("%s.__storm_table__ missing" % repr(cls))
storm.exceptions.ClassInfoError: <type 'instance'>.__storm_table__ missing
</code></pre>
<p>This suggests to me that some module is missing. There is no module <code>instance</code> in Storm.</p>
http://stackoverflow.com/questions/1765165/nhibernate-update-reference1NHibernate update referencejonhilt2009-11-19T17:41:19Z2009-11-23T14:33:56Z
<p><strong>Entities</strong></p>
<p>We have an entity called Product which is loaded using NHibernate.</p>
<p>Product has a category which NHibernate happily populates for me.</p>
<p><strong>Database</strong></p>
<p>In the database, Product has a foreign key for category.</p>
<p><strong>Scenario</strong></p>
<p>User edits this Product (via a web interface) and chooses a different category (say instead of "Fish" we select "Veg").</p>
<p>This is probably a dropdown list, with each category shown. When they choose a different category we get an int key.</p>
<p><strong>Problem</strong></p>
<p>Obviously we now want to save the changes to Product but in effect the only change is to save a new int (say 2, instead of 1).</p>
<p>So we retrieve the existing Product, and now comes the problem.</p>
<p>We don't have a "CategoryID" field on Product, we only have a Category property.</p>
<p>But we don't really want to retrieve the category (by id) just to assign it to the Product.</p>
<p>So I guess what I want to know is should we...</p>
<p>a) Add a CategoryID property to Product </p>
<p>b) Create a new category, assign it the relevant id and attach that to Product (but surely that will cause errors, or overwrite the existing category)</p>
<p>c) Retrieve (lookup) the category from the system (by id) and attach that to the Product</p>
<p>d) Do something else entirely!</p>
http://stackoverflow.com/questions/224481/creating-a-custom-hibernate-usertype-what-does-ismutable-mean1Creating a custom Hibernate UserType - What does isMutable() mean?Johann Zacharee2008-10-22T04:21:10Z2009-11-23T13:23:50Z
<p>I am creating a custom UserType in Hibernate for a project. It has been relatively straightforward until I came to the isMutable method. I am trying to figure out what this method means, contract-wise. </p>
<p>Does it mean the class I am creating the UserType for is immutable or does it mean the object that holds a reference to an instance of this class will never point to a different instance?</p>
<p>I found some examples in the <a href="http://www.hibernate.org/37.html" rel="nofollow">Hibernate Community Wiki</a> where they returned true, because the object itself was mutable - <a href="http://www.hibernate.org/73.html" rel="nofollow">http://www.hibernate.org/73.html</a>. </p>
<p>Other examples in the community wiki returned false without addressing why, even though they were also mutable.</p>
<p>I have checked the JavaDoc, but it's not very clear either.</p>
<p>From the JavaDoc for <a href="http://www.hibernate.org/hib_docs/v3/api/org/hibernate/usertype/UserType.html" rel="nofollow">UserType</a>:</p>
<pre><code>public boolean isMutable()
Are objects of this type mutable?
Returns:
boolean
</code></pre>
<p>From JavaDoc for <a href="http://www.hibernate.org/hib_docs/v3/api/org/hibernate/type/Type.html" rel="nofollow">Type</a>:</p>
<pre><code>public boolean isMutable()
Are objects of this type mutable. (With respect to the referencing
object ... entities and collections are considered immutable because
they manage their own internal state.)
Returns:
boolean
</code></pre>
http://stackoverflow.com/questions/1721704/how-best-to-retrieve-and-update-these-objects-in-nhibernate0How best to retrieve and update these objects in NHibernate?Sosh2009-11-12T11:56:22Z2009-11-23T10:51:13Z
<p>Hi,</p>
<p>I previously asked <a href="http://stackoverflow.com/questions/1679332/how-to-model-this-situation-in-orm-nhibernate">a question</a> regarding modeling of a situation with <strong>Users, Items, and UserRatings.</strong> In my example <strong>UserRatings are associated with one User and one Item.</strong> A good answer was provided by Nathan Fisher and I've included the model he suggested below. </p>
<p><strong>But I now have a question regarding <em>retrieval of these objects</em>.</strong></p>
<p>The model links the entities by holding references to the entities.My question is, <strong>how best do I retrieve a particular UserRating to be updated?</strong> In this situation <strong>I would have the userID</strong> (from the asp.net auth session), <strong>and the itemID</strong> (from the URL). Also, there could be 1000s of ratings per user or item.</p>
<p>Back in the old school this would be as simple as one update query 'where x = userID and y=itemID. Easy. However the best way to accomplish this in NHibernate using a proper object model is not so clear.</p>
<p><strong>A)</strong> I understand that I could <strong>create a repository method GetRatingByUserAndItem, and pass it both a User and Item object, which it would do an HQL/criteria query on to retrieve the Rating object.</strong> However to do this I assume that I would first need to retrieve User and the Item from the ORM before passing these back to the ORM in the query. I would then get the UserRating object, update it, and then have the ORM persist the changes. This seems ridiculously inefficent to me, compared to the old school method.</p>
<p><strong>B)</strong> Maybe I could just <strong>new-up the UserRating object, and do a createorupdate type call the ORM (not sure on exact syntax).</strong> This would be better, but presumably I would still need to first retrieve the User and Item, which is still pretty inefficient.</p>
<p><strong>C)</strong> Perhaps I should just <strong>retrieve the User (or the Item) from the ORM, and find the correct UserRating from its UserRatings collection.</strong> However, if I do that, how do I make sure that I'm not retrieving all of the UserRatings related to that User (or Item), but just the one related to the specific item and specific user?</p>
<p><strong>D)</strong> It occured to me that I could just <strong>drop the full-blown references to User and Item from UserRating in the model, and instead have primitive references (UserID and ItemID).</strong> This would allow me to do something as simple as the oldschool method. Very tempting, but this just doesn't seem right to me - not very Object Oriented (and surely that's the main reason we are using an ORM in the first place!)</p>
<p><strong>So, can anyone offer some sage advice? Am I on the right track with any of the options above? Or is there a better way that I have not considered?</strong></p>
<p>Thanks in advace for your help! :)</p>
<p><strong>UPDATE:</strong></p>
<p>I've just posted a bounty for this, and understand this better, <strong>I would also like to know, using a similar approach, how best to perform the following queries</strong>:</p>
<ul>
<li><strong>Retrieve all the Items which a user had NOT rated.</strong></li>
<li><strong>Retrieve the Item(s) and Item rating(s) which the user had rated the lowest.</strong></li>
</ul>
<p><hr></p>
<p>The Model follows below:</p>
<pre><code>public class User
{
public virtual int UserId { get; set; }
public virtual string UserName { get; set; }
public virtual IList<UserRating> Ratings { get; set; }
}
public class Item
{
public virtual int ItemId { get; set; }
public virtual string ItemName { get; set; }
public virtual IList<UserRating> Ratings { get; set; }
}
public class UserRating
{
public virtual User User { get; set; }
public virtual Item Item { get; set; }
public virtual Int32 Rating { get; set; }
}
<hibernate-mapping xmlns="urn:nhibernate-mapping-2.2" assembly="Test" namespace="Test" >
<class name="User">
<id name="UserId" >
<generator class="native" />
</id>
<property name="UserName" />
<bag name="Ratings" generic="true" inverse="true" table="UserRating">
<key column="UserId" />
<one-to-many class="UserRating"/>
</bag>
</class>
<class name="Item" >
<id name="ItemId" >
<generator class="native" />
</id>
<property name="ItemName" />
<bag name="Ratings" generic="true" inverse="true" table="UserRating">
<key column="ItemId" />
<one-to-many class="UserRating"/>
</bag>
</class>
<class name="UserRating" >
<composite-id>
<key-many-to-one class="User" column="UserId" name="User" />
<key-many-to-one class="Item" column="ItemId" name="Item" />
</composite-id>
<property name="Rating" />
</class>
</hibernate-mapping>
</code></pre>
http://stackoverflow.com/questions/1544535/which-ldap-object-mapper-for-python-can-you-recommend4Which ldap object mapper for python can you recommend?asmaier2009-10-09T15:35:53Z2009-11-23T07:14:13Z
<p>I have to synchronize two different LDAP servers with different schemas. To make my life easier I'm searching for an object mapper for python like SQLobject/SQLAlchemy, but for LDAP.
I found the following packages via pypi and google that might provide such functionality:</p>
<ul>
<li><p><strong>pumpkin 0.1.0-beta1</strong>:
Pumpkin is LDAP ORM (without R) for python.</p></li>
<li><p><strong>afpy.ldap 0.3</strong>:
This module provide an easy way to deal with ldap stuff in python.</p></li>
<li><p><strong>bda.ldap 1.3.1</strong>:
LDAP convenience library.</p></li>
<li><p><strong>Python LDAP Object Mapper</strong>:
Provides an ORM-like (Django, Storm, SQLAlchemy, et al.) layer for LDAP in Python.</p></li>
<li><p><strong>ldapdict 1.4</strong>:
Python package for connecting to LDAP, returning results as dictionary like classes. Results are cached.</p></li>
</ul>
<p>Which of these packages could you recommend? Or should I better use something different?</p>
http://stackoverflow.com/questions/1529117/what-is-the-best-way-to-use-nested-objects-with-subsonic-when-i-only-have-iquerya1What is the best way to use nested Objects with Subsonic when I only have Iqueryable for Foreign Key RelationshipsMark Fruhling2009-10-07T01:52:50Z2009-11-23T03:00:03Z
<p>I'd like to use Subsonic in a shopping cart application, but I'm trying to replace code that is using Session to store an Order object. That Order object has a collection or OrderDetail objects that are added to the collection through the shopping cart process. I'm impressed with what Subsonic can do and I think I'm missing how I could implement it in this project. What I need is:</p>
<pre><code>Order.OrderDetails.Add(new OrderDetail());
</code></pre>
<p>Right now Subsonic is creating the one-to-many relationship for me based on the foreign key in the OrderDetails table. But Order.OrderDetails is available as an Iqueryable interface. I would like more control over how the property is managed. How have other managed to use the Subsonic generated objects to hold data in memory before saving to the database?</p>
http://stackoverflow.com/questions/1779239/converting-sql-commands-to-pythons-orm1Converting SQL commands to Python's ORMMasi2009-11-22T16:52:19Z2009-11-22T19:39:56Z
<p><strong>How would you convert the following codes to Python's ORM such as by SQLalchemy?</strong></p>
<h1>#1 Putting data to Pg</h1>
<pre><code>import os, pg, sys, re, psycopg2
#conn = psycopg2.connect("dbname='tkk' host='localhost' port='5432' user='noa' password='123'")
conn = psycopg2.connect("dbname=tk user=naa password=123")
cur = conn.cursor()
cur.execute("""INSERT INTO courses (course_nro)
VALUES ( %(course_nro)s )""", dict(course_nro='abcd'))
conn.commit()
</code></pre>
<h1>#2 Fetching</h1>
<pre><code>cur.execute("SELECT * FROM courses")
print cur.fetchall()
</code></pre>
<h1>Examples about the two commands in <a href="http://www.sqlalchemy.org/docs/05/reference/sqlalchemy/expressions.html" rel="nofollow">SQLalchemy</a></h1>
<p><strong>insert</strong></p>
<pre><code>sqlalchemy.sql.expression.insert(table, values=None, inline=False, **kwargs)
</code></pre>
<p><strong>select</strong></p>
<pre><code>sqlalchemy.sql.expression.select(columns=None, whereclause=None, from_obj=[], **kwargs)
</code></pre>
http://stackoverflow.com/questions/1778578/lazy-eager-loading-strategies-in-remoting-cases-jpa4Lazy/Eager loading strategies in remoting cases (JPA)Martin K.2009-11-22T12:29:32Z2009-11-22T18:33:23Z
<p>I'm running into LazyLoading exceptions like the most people who try remoting with an ORM.
In most cases switching to eager fetching solves the problem (Lazy Loading / Non atomic queries / Thread safety / n+1 problem ...). But eager fetching has also disadvantages if you are dealing with a really big object graph. </p>
<p>Loading the whole object graph isn't needed in the most use-cases. It feels bad to load more data then needed (or load them from the db and extract the needed subset). </p>
<p>So what alternative ways are there to solve this kind of problem (at runtime)?<br>
I've seen:</p>
<ul>
<li>Inject a data access dependency into domain object and let the object decide either to load lazy or eager: <em>Feels bad</em>! The domain layer should be independent from any service. Domain injection is also an expensive operation. The domain should be data access ignorant and should be used with or without data access. </li>
<li>Fetch everything lazy except of use-cases which require more data: Seems better for performance but this way forces many client=>server / database roundtrips. The initialisation of the lazy fields can also suffer pain (tried with JPA). This way <em>doesn't feel generic</em> and is subject of the same lazy restrictions mentioned above.</li>
<li>Encapsulate persistence in Lazy class: More complexity, no best practice for interoperation with ORM. Bloating services layer (so much "hand written" code <em>feels bad</em>). </li>
<li>Use full projections for every use-case: We'll end up in SQL and drop the benefit of an ORM.</li>
<li>A DTO / Virtual Proxy layer enforces more complexity and makes code harder to maintain (Wormhole antipattern >> Bloat).</li>
</ul>
<p>I thought a lot about another way. Maybe generic projection white./black listning is a solution.</p>
<p>Idea (blacklist): Define an classname list with the boundaries for a fetching operation. If a property matches and it's lazy, remove the lazy (CGLIB) proxy and fill the value with null. Else, simple prevent from fetching (and leave value at null). So we can set clear boundaries in our DAOs. </p>
<p>Example: <code>ProductDao.findByName("Soap",Boundaries.BLACKLIST,"Category, Discount")</code>
the two last parameters can also been bound into a Boundaries object.</p>
<p>Idea (whitelist): Like blacklist, but you must declare properties with should be loaded in a whitelist.</p>
<p>What do you think about such a solution? (Possible problems, restrictions, advantages ...)
How should I write this in java? Maybe via AOP to match DAO methods (because I'm able to modifiy cglib proxy behaviour there)?</p>