The fetching-strategy tag has no wiki summary.
0
votes
1answer
31 views
What is your data loading strategy for pins on the map on the iOS?
I have developed an iOS app with native map showing custom pins on the map? Data behind the pins is loaded on demand and based on the movement around the map. I am setting a radius based on the ...
0
votes
1answer
51 views
Hibernate : many ScrollResults to fetch full database (like subquery strategy)
I try to dump to file full database's contents with the least number of requests.
Thus, How to enable subquery fetching with query.scroll ?
My objects :
I have database like :
Employee (1) ------ ...
0
votes
1answer
80 views
GridFS file retrieval strategy
I have been looking at GridFS to store images and other files.
It has some really nice features but we have to retrieve and store files at some temporary location to render html which costs us cpu ...
1
vote
1answer
72 views
Strategy for a Game
This Game is a turned based game and is played on a rectangular grid N * M filled with non- negative integers. On his turn the player can remove and take 1 of the top Row (T) , bootom row (B) , left ...
0
votes
1answer
188 views
Faster way of fetching data from database or from List?
Can anyone please elaborate which is the faster way of fetching data. Fetching it from the database directly or fetching it from a List?
Suppose, in a java web application some data need to be ...
0
votes
2answers
195 views
Nhibernate producing proxy despite HQL fetch
I have the following HQL statement:
select distinct t from TaskEntity as
inner join fetch t.Case as c
inner join fetch c.Client as client
inner join fetch c.Matter as matter
However, despite ...
0
votes
1answer
98 views
General CoreData Performance
i have a more or less general question about using coredata the most efficient way.
i have attempted two different approaches of managing data that is shown in a view of my project.
Approach 1: when ...
2
votes
2answers
233 views
Implementing Udi's Fetching Strategy - How do I search?
Background
Udi Dahan suggests a fetching strategy as a useful pattern to use for data access. I agree.
The concept is to make roles explicit. For example I have an Aggregate Root - Customer. I want ...
0
votes
1answer
116 views
iPhone: Algorithm for fetching required data and images from server only once
I have implemented an iPhone App that has FanWall in it where users are allowed to put their comments on FanWall screen and other users can comment on their comment or add new comments. It works fine ...
2
votes
1answer
2k views
Some queries regarding fetch strategies in hibernate and relation of fetchtype with fetchmode?
I have gone thru some of the links for hibernate fetch strategies on net.One brief and concise link i liked is
http://www.mkyong.com/hibernate/hibernate-fetching-strategies-examples/. We have four ...
0
votes
2answers
329 views
Hibernate ignores FetchType for Single Inheritance
I have 3 entities inheriting from another entity.
I'm using the strategy Single_Table
@Inheritance(strategy = InheritanceType.SINGLE_TABLE)
E.g. Class B,C and D inherite from A
On entity B I'm ...
1
vote
1answer
89 views
What is a Fetching Strategy?
I understand the core concept of retrieving data using different strategies. But I cannot find a good summary/definition..
Is it a design pattern? Does it fit within a broader design pattern?
Is it ...
0
votes
2answers
260 views
Get eagerly collection of entities containing other eagerly got collections
I've got stuck on the M:N relation between entity and strings. An user can have more than one role and each role can be assigned to more than one user. Role is just a string. Roles are contained in ...
2
votes
1answer
198 views
Fetch the smallest date of an object in CoreData
I'm having the same problem as this question, but the answer of @davedelong is not working for me.
When following the Apple Example, for fetching the smallest date in a set of object I get the ...
3
votes
1answer
1k views
NHibernate AliasToBeanResultTransformer & Collections
I would like to return a DTO from my data layer which would also contain child collections...such as this:
Audio
- Title
- Description
- Filename
- Tags
- TagName
- Comments
- ...
1
vote
1answer
521 views
Fetching strategy encapsulation for Entity Framework 4.1 and NHibernate
I created a project to test out NHibernate 3+ vs. Entity Framework 4.1, wrapping it in a repository, making it very testable using interfaces etc.
I do not want to expose either ORM outside of the ...
0
votes
1answer
635 views
Can I change the Fetch Mode in a Resultset from a DatabaseMetaData query?
I'm inspecting a Database using an DatabaseMetaData instance. I get all the information of the tables in the DB and I iterate all the Resultset without anyproblem.
At the end of the iteration, I want ...
0
votes
2answers
231 views
Grails automatic relational fetching
Is is possible to do automatic relation fetching in GORM / Grails?
class Person {
static hasMany = [cars : Car]
}
class Car {
static belongsTo = [owner : Person]
}
Then use this relation ...
4
votes
1answer
2k views
Linq to NHibernate ThenFetch multiple properties
I've got this object graph:
// Lots of stuff omitted for brevity; these are all virtual properties and there
// are other properties which aren't shown on all classes.
class A {
B b;
C c;
...
0
votes
2answers
926 views
Entity Framework Set PreserveChanges to be default MergeOption
In a ASP.net mvc 2 project is there a way to set the default MergeOption to PreserveChanges for all entity types?
Currently i have a massive sub that sets all entity types mergeOption.
Thanks
3
votes
2answers
924 views
SetFetchMode call ignored
I have a problem with SetFetchMode call in Criteria API in following query:
DetachedCriteria.For<User>()
.Add<User>(u => u.Status == UserStatus.Live)
...
1
vote
1answer
1k views
HIbernate fetch join issuing additional sql statements
Consider the following Parent class that has two ManyToOne references.
@Entity
@Table(name = "PARENT")
public class Parent {
private static final long serialVersionUID = 3730163805206219313L;
@Id
...
0
votes
1answer
387 views
Nhibernate - Paging and eager loading entities
I have two entities, a team and an employee.
I want get a list of employees with eager loaded teams. The list has to be paged.
public PagedList<Employee> ...
5
votes
1answer
718 views
How does Hibernate's batch-fetching algorithm work?
I found this description of the batch-fetching algorithm in "Manning - Java Persistence with Hibernate":
What is the real batch-fetching
algorithm? (...) Imagine a batch size of
20 and a total ...
2
votes
2answers
984 views
How to set NHibernate Linq fetch strategy through a façade layer
I’m using NHibernate for data access, but accessing it through a façade layer. This layer consists of interfaces for the repositories, plus an IUnitOfWork interface which corresponds to the ISession ...
5
votes
3answers
1k views
Is this the right way of using ThenFetch() to load multiple collections?
I'm trying to load all the collections eagerly, using NHibernate 3 alpha 1. I'm wondering if this the right way of using ThenFetch()?
Properties with plural names are collections. The others are just ...
1
vote
4answers
728 views
NHibernate: How to fetch an object without its child collections?
My objects of type Object1 contain List Children1 property.
I would love to get these objects without children.
Seems like detachedCriteria.SetFetchMode ("Children1", FetchMode.Lazy) should be the ...
9
votes
3answers
3k views
Force an eager select in NHibernate
I am trying to eagerly fetch collections using selects, but all I am
getting is inner joins. What is going on?
Session.CreateCriteria(typeof(Foo))
.SetFetchMode("Bars", FetchMode.Select)
...
1
vote
1answer
2k views
NHibernate: is there limitation of batch-size to 10 items?
I am having a problem with NHibernate (SQL Server 2000, if it matters).
It seems like NHibernate uses batch-size equal to 10 even if I specify 500 (but if I specify size less than 10, say 3 - it uses ...
2
votes
1answer
2k views
How to change hibernate's default fetching strategy?
I know hibernate's default fetching strategy is LAZY for collections, is there a way to change the default fetching strategy system wide through configuration file?
0
votes
2answers
173 views
iphone tabbar where to load data?
I have two tabbar items(views) that use the same data, whats the best solution for getting the data?
Make two fetch request for the same
data in each view controller.
Make one fetch request in
...
11
votes
1answer
1k views
Hibernate: batch_size? Second Level Cache?
I have a Hibernate domain object that gets loaded by different parts of the application. Sometimes it's advantageous to lazy load every association and others it's better to load the entire thing in ...
7
votes
2answers
15k views
Is there a way to change the JPA fetch type on a method?
Is there a way to change the JPA fetch type on a single method without editing the entity object?
I have a shared ORM layer consisting of JPA entity classes. This ORM layer is accessed by two DAO ...
1
vote
1answer
457 views
Join two data tables from different source databases in .NET?
How do you join two data tables from different source databases in .NET? Ideally, I can craft two queries manually and simply join on a single field.
In this case, linked servers and scheduled ...
16
votes
5answers
13k views
NHibernate Eager Fetching Over Multiple Levels
I have a 3-leveled hierarchy of entities: Customer-Order-Line, which I would like to retrieve in entirety for a given customer, using ISession.Get(id). I have the following XML fragments:
...
