0
votes
4answers
91 views
DAO, Spring, Hibernate, Jboss
How exactly are these 4 components related, any good explanations someone can offer or links or whatever useful.
0
votes
4answers
207 views
Looking for a generic library for interacting with a JPA model
I'm building an application using a JPA object model, and creating several Data Access Objects to interact with that model. I'm finding that I'm repeating a lot of code (essentially CRUD) between …
0
votes
1answer
26 views
DAO/Repository/NHibernate And Handling Edge DB Cases
One thing that keeps stumping me, and I do not see much mention of it in books/blogs, is how to handle DB operations in a system that really don't fall under the jurisdiction of DAOs or Repositories. …
0
votes
4answers
141 views
Is it possible to create a check constraint in access and/or DAO?
Hello
I am trying to create a check constraint on an access (jet?) table.
So, I open the .mdb file with access, go into queries->create query in design view,
type esc, then menu->view->query and …
0
votes
1answer
27 views
DAO, ORM and Queries
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 …
0
votes
2answers
84 views
Transaction between several DAO layers ?
As shown below, I am accessing a Service layer method inside of another DAO.
(Every DAO in the system is implemented using HibernateDAOSupport class)
I wanted to rollback the transaction when #1 or …
1
vote
2answers
34 views
DAO Best practices : Querying Parent / Children
Hi
Given you have a domain model with a simple parent / child relationship, and each entity has it's own associated DAO, eg:
Author
AuthorDAO
Book
BookDAO
If I want to add a DAO method for …
0
votes
4answers
172 views
Can I do this Generic thing?
Hi there:
It seems I'm missing something with Java Generics because something I think is simple, it appears to me that can´t be done. Maybe you can help...
This is the scenario: I'm coding a generic …
0
votes
4answers
47 views
Using Linq-to-SQL entities in your BLL or UI?
I had a client ask for advice building a simple WPF LOB application the other day. They basically want a CRUD application for a database, with main purpose being as a WPF training project.
I also …
1
vote
8answers
190 views
Pros and Cons of the use of DAO pattern
As I mention, I'm interested to know what do you (as experienced developers) thinks about the use of DAO pattern, specifically within a Web Application. If possible what advantages have you found, or …
0
votes
1answer
133 views
how to integration test a DAO built with spring + iBatis
I asked a question, title of which might have been misleading so I'm going to try to ask the question again with much detailed stuff. (i know question seems long but please bear with me)
What I'm …
0
votes
5answers
77 views
Java - DAO Layer or Plugin
Hi,
I work on the JBJF Project on SourceForge and we want to improve on the Database Access for this framework. Currently, it's semi-flexible, but the access is done at the Task level.
We'd like to …
1
vote
2answers
52 views
What is the name of the violating unique index constraint in dao / ms-access
hello everyone
I am trying to insert a record into a table with DAO (within MS-Access) and doing so, I receive an Error 3022 (which indicates that a unique index is violated). The error is correct …
0
votes
1answer
48 views
How to open Excel 2007 (xlsx) file with CDaoDatabase
Using CDaoDatabase defined in afxdao.h, how can I open up Excel 2007 (xlsx) files? I can open up Excel 2003 (xls) files using the connection string Excel 8.0;HDR=NO;IMEX=1, anybody know how I can do …
0
votes
1answer
99 views
How do you create a DAO class for Seam / JPA (hibernate)?
Hi,
I'm learning Seam and JPA/Hibernate and while I could find some examples on how to build a DAO class with Hibernate I'm a bit confused on how to do the same thing with Seam (or even if that is at …
