DAO - Data Access Objects

learn more… | top users | synonyms

1
vote
0answers
5 views

strange behavior accessing DB2 database from VB.NET project

We have come across some really bizarre behavior that I will explain as briefly and succinctly as I can. We have a test environment and a production environment with DB2 database and VB.net projects. ...
1
vote
2answers
21 views

EJB 3.1 Generic DAO

I am trying to implement a Generic DAO to use in my project. The code I have implemented thus far is the following: Base DAO public abstract class BaseDAO<T> { private Class<T> ...
0
votes
1answer
15 views

BaseDao for LINQ

I use linq DBML file for data mapping in my project. I have a lot of entities there, Like Areas, Locations, Departments, etc. I want something like Base Dao that implements base functions like ...
0
votes
0answers
20 views

SQL update dynamic fields

I have a dynamic generated form with multiple fields. So users can see multiple 'projects' and select one and see the form that belongs to that project. Now not all fields from the database are ...
0
votes
1answer
23 views

Hibernate: Row was updated or deleted by another transaction (or unsaved-value mapping was incorrect)

First of all sorry. I know it's have been alot of same topics, but maybe my english bad or maybe I did not find the right answer. I use Optimistic locking @Version annotation. I need one for one Row ...
0
votes
1answer
40 views

Hibernate and Query with criteria No value specified for parameter 2

I don't know why, but I do face the exception everytime when I try to put more than one parameter to method for extract sorted data from database. What I want to do is extract data from one entity and ...
0
votes
1answer
34 views

Is REST/SOAP performance fast enough for use between PHP applications [closed]

Goal: Separate business logic and processes from ecommerce shopping cart. Just so we're clear, we are a larger ecommerce shop but by no means are we dealing with mega amounts of traffic here, just a ...
0
votes
1answer
15 views

jUnit Unexpected method call DAO Easymock check User

I have a problem with testing check user method from DAO. Here is the code: private UserService service; private UserDao mockDAO; @Before public void setUp(){ service=new UserService(); ...
0
votes
1answer
34 views

Generic DAO - “Never go full generic!”

Ive seen allot of usages of generic dao over the internet. you gotta love it: public interface GenericDao <T, PK extends Serializable> {} public class GenericDaoHibernateImpl <T, PK extends ...
0
votes
1answer
17 views

Update vs Refresh in ORMLite

Dao<T,ID> Interface provides many DAO methods such as update,create ,...etc I read that Update method will not save changes made to foreign objects or to foreign collections. Did ...
0
votes
3answers
41 views

JSP/ DAO error : The method getInstance() is undefined for the type ConnectionPool

As you can see, this code is part of my Data Access Object Layer. I've never used the ConnectionPool Object before because i'm still studying Java. Anyway, i'm getting an error message stating : ...
1
vote
1answer
31 views

On Services, Daos and in between - a beginner's dilemma

I'm pretty new to layered architecture, + spring + hibernate after reading some guides on how the class hierarchy is supposed to be - i came up with this structure: public interface GenericDAO { ...
0
votes
1answer
35 views

jUnit Unexpected method call DAO Easymock

I am newbie with mock testing. I want to test my DAO for users. Here is my code. private UserService service; private UserDAO mockDAO; @Before public void setUp(){ service=new UserService(); ...
0
votes
2answers
41 views

Spring Hibernate : Generic Dao addition causes - org.hibernate.TransactionException: nested transactions not supported

I have a layered architecture in my project. in order to prevent redundancy i created a very basic generic dao: public interface GenericDAO { public <T> T getItemById(long id, ...
1
vote
0answers
56 views

Java + Spring + hibernate : Dao implementation that is about to change in the future

I'm currently developing a web server with spring 3 and hibernate 4. in my server i have the following interfaces: 1) GenericDao 2) UserDao extends GenericDao 3) ProductDao extends GenericDao 4) ... ...
2
votes
4answers
99 views

Hibernate and Spring - Dao ,Services

I've been reading some tutorials and I could see that most of the MVC implementations are based on: 1) a dao interface for example "IUserDao" 2) a dao impl of that interface - ...
0
votes
3answers
60 views

How can I reduce code duplication in my database access layer?

I am new to Java and I'm trying to implement a basic database access layer. I'm using Apache DBUtils to reduce JDBC boilerplate code and this is working really well. The problem is that my ...
0
votes
1answer
35 views

How to implement database search in JTable if I'm using VOs and DAOs?

everyone. I decided to contribute with this topic after racking my brains exhaustively. Most part of the filtering code I got from: Search a JTable repeatedly using JTextfield text ...
3
votes
1answer
245 views

Display data from a database using JSP, Servlets, JSTL and Command Pattern

I'm trying to display data from a database, but nothing happens on JSP. I used a design pattern Command. Where is my problem? Structure of Command design pattern: Here is my code: JSP page: ...
0
votes
2answers
38 views

jdbc update with dao pattern not working

i have a jsf page that update employee table with this code.... i can get the data,but i can't update it with primefaces.and when i debug it,it doesn't do anything. i need help to update the data. ...
1
vote
1answer
51 views

Do I need to use ADO when connecting to Active Directory with VBA?

I need to query Active Directory and build my MS Access database using the results. I found some code here. As you can see, part of this code is creating an ADODB.Connection object. Is this the only ...
1
vote
1answer
59 views

Registering MySQL DataSource with JNDI for Hibernate

I have hibernate which connect to database via JNDI datasource. My purpose: registry DataSource with JNDI to test DAO layer. Example Hibernate config <hibernate-configuration> ...
0
votes
1answer
34 views

Hibernate session not working in spring

I have a very strange issue with Spring and Hibernate. I have everything configured, my database.properties, the hibernate.xml and datasource.xml as I saw in the tutorials, but connection isn't ...
1
vote
1answer
33 views

GWT Error: RequestFactory ValidationTool must be run

Everytime I launch my app I get the "RequestFactory Validation Tool must be run..." error even if listEmptyBoxes() is not executed. I already have file requestfactory-apt-2.5.0-rc1.jar on the ...
1
vote
4answers
57 views

Call to Asynchronous Function

I am using parse.com as my backend service for my Android application. I wish to make separation between my activities and parse, for this purpose I have created service class witch will bridge ...
0
votes
1answer
41 views

Optimizing data inserts for HibernateTemplate

I have to optimize the database (especially insert) performance of a certain legacy tool. The tool has been written in Java and for the data access layer Spring + HibernateTemplate was the technology ...
0
votes
1answer
49 views

How does spring mvc annotation driven link a repository object

I am using Spring MVC annotation driven configuration. I have a repository class named ProductRepository annotated with @Repository. In my ProductController class I have a private field ...
0
votes
1answer
44 views

Create DAO for existing CSV file

given is an existing CSV file with the following example structure/content: id,password,role user1,1234,student user2,1234,professor I want to create a basic DAO with simple CRUD operations in Java ...
0
votes
1answer
63 views

Is it possible to change the Double column Decimal Size

Is it possible to change the Double column Decimal Size(Number of Decimals) in MS ACCESS using C# with the help of DAO/Query. As per the MSDN size : The field size in characters (Text and ...
1
vote
2answers
249 views

Junit test case for database insert method with DAO and web service

I am implementing a webservice based university management system. This system adds certain courses to database. here below is the code that I am using. Course.java public class Course { ...
0
votes
0answers
43 views

Model relationships in DAO pattern

I'm implementing a web application and I need to connect to a DB. The idea is using a DAO pattern but I have a doubt. Imagine that I have the next tables: Department: Businnes departments. Employee: ...
0
votes
0answers
58 views

Database - which is a better design for Link tables?

My database has 5 principal tables (in yellow). Each table has a primary key Id (AttributeId, FieldId, ValueId, UserId, ServiceId) I need to join a User and a Service to a triple (Attribute, ...
3
votes
1answer
136 views

Angular.js and DAO pattern

First of all I must admit I am quite new to Angular.js and I haven't used any new generation js framework like Backbone or Knockout before. I'm creating an application which communicates with server ...
0
votes
1answer
39 views

Neo4j project structure

I am looking to build a relatively complex Neo4J application, which I intend to split up in two separete projects, namely frontend and backend. The frontend will be HTML5 and is not relevant for this ...
0
votes
1answer
38 views

Populating DTO class from javascript function

I am working on a dao dto struts architecture - Basically i want to populate my dto on every change function in javascript . I am trying following code --- function onchangefunction() { var e = ...
2
votes
0answers
26 views

Login DAO sql statement involving multiple joins

I am trying to create a query that will return through DAO whether the inputted username and password is correct. I'm using java for DAO implementation as well as JSF. I have the following tables: ...
0
votes
1answer
28 views

VBA and overdraft issues

I've created a VBA program thats connects to Access and inputs and outputs correctly. I'm having problems trying to get the available balance to show properly though. Currently I have: ...
3
votes
1answer
128 views

How to avoid repeatig DAO methods in Service classes? @Transactional annotated DAO and Service classes - is it acceptable practice?

I know that the best practice is having both service and dao layers and to add @Transactional annotations on the service level. But in my case it means most of my service classes is created just to ...
0
votes
1answer
162 views

rest webservice - DAO layer and webservice integration, sessionfactory null exception

We develop a project in mvc with Java. we want to add a rest web service to our project, but when we want to access DAO layer we get sessionFactory is null exception. How can we inject DAO over web ...
2
votes
1answer
50 views

Why query returns different results with JET DAO compared to ACE DAO?

In a VB6 program accessing an MDB file, the following SQL query is being executed: > Select * FROM [table1] WHERE ([type] = 1 OR [type] = 2 OR [type] = 6) > AND ([notes] = Null OR [notes] = ...
-3
votes
0answers
63 views

Please guide me through the loop holes in my code [closed]

Can someone please tell that what i am doing is wright or something wrong, as i am new to hibernate. Its just a simple login example, but will take time,to go through and i will surely appreciate all ...
0
votes
1answer
48 views

Business Logic Architecture with Entity Framework

I`m using Entity Framework and I have entities like this: public class User : IEntity { [Key] [DatabaseGeneratedAttribute(DatabaseGeneratedOption.Identity)] public int ...
0
votes
1answer
32 views

java orm/data access object - interface for deleting a record

I've got a following Java interface that is used as a DAO for Category entities: public interface CategoryDao extends Dao { public void save(Category category); public void update(Category ...
1
vote
3answers
106 views

Persistence layer design in Java EE 6/7

The last time I developed an app using JBoss 7.1 (Java EE6 standard), I wrote the persistence layer using DAOs. First of all, I had an "abstract" DAO which was the father of all concrete daos: ...
0
votes
0answers
40 views

HQL - Why delete needs flush to work and not just commit

Why while managing a DB Hibernate needs flush for deleting properly an object instead of commit (as done with selects or inserts)? Thanks
0
votes
0answers
37 views

Spring Java PostProcessor after creating database connection inject data in spring bean

Java Spring 2.5.x After creating all spring context beans i want to post process through programming i want fetch data from db get bean from spring context and fill data into bean following is my ...
0
votes
3answers
56 views

Issue in calling DAO method from Service

I have a DAO that has method like this: class AbcService { private AbcDAO isntance; public void getStuff() { instance.getQueryResult(); } } Now if this method is called from anywhere ...
2
votes
1answer
49 views

Any frameworks for dynamically creating schema on-the-fly to support adhoc JSON object map persistence?

Here is a requirement that I am trying to nail down - there is this incoming JSON data which represents an Object Map (think nested objects, each having one or more attributes) which I need to persist ...
1
vote
1answer
94 views

DAO naming conventions

I'm developing an app that needs to establish a connection with a DB. To operate through this connection I'm using DAO pattern. My question is related with the organization of the code and the name of ...
0
votes
1answer
85 views

NoUniqueBeanDefinitionException while testing dao test class in spring

Hi i am trying to test my DaoTest class as a junit test.While running the class I get: java.lang.NoClassDefFoundError: org/springframework/beans/factory/NoUniqueBeanDefinitionException. I ...

1 2 3 4 5 18