-1
votes
2answers
51 views
Java Hibernate service class
Dear All!
I have a painful problem regarding Java Hibernate.
I have my own POJO classes in my modell, and I would like to submit query from an instance of that class, to a table …
1
vote
2answers
19 views
Testing Data Model in project that uses NHibernate for persistence
I'm still new with NHibernate, so correct me if I'm wrong on any of this.
When you are using NHibernate to build collections of objects from database records, NH takes care of ins …
1
vote
1answer
29 views
How do I save a new object using NHibernate when it already has an ID?
I'm using GUIDs for the identifier on my objects it is assigned when the entity is instantiated. I want to save them using NHibernate and have NHibernate determine whether it's a n …
1
vote
2answers
17 views
Architecting BlackBerry CRM / SFA applications
Hi, I am in process to start developing a Blackberry application (Proof Of Concept) on the lines of SalesForce and SalesNow CRM. I am a web developer with skills on LAMP technologi …
0
votes
1answer
26 views
Persisting a GWT Visualization API DataTable
What's the correct way to go about persisting a GWT Visualization API DataTable?
Should I find a way to serialize the DataTable object or should I write the table cell by cell to …
1
vote
2answers
62 views
Most optimized way to store crawler states ?
Hi there,
I'm currently writing a web crawler (using the python framework scrapy).
Recently I had to implement a pause/resume system.
The solution I implemented is of the simplest …
3
votes
2answers
85 views
What’s the easiest way to persist data in an iPhone app?
I want to persist a very simple string. For example "abc". What's the easiest way to do this? I don't want to use a SqlLite database.
1
vote
0answers
49 views
Implementing PostgreSQL arrays in Zend Model
Couldn't find anything related to the subject in Zend Framework API.
What is the best way to implement Postgres array based property into Zend Model Class?
I know one can parse ar …
5
votes
6answers
197 views
Which database should I use to store records, and how should I use it?
I'm developing an application that will store a sizeable number of records. These records will be something like (URL, date, title, source, {optional data...})
As this is a client …
3
votes
3answers
72 views
ehcache persist to disk issues
I want to do something with ehcache in Java that I think should be extremely simple, but I've spent enough time frustrating myself with the docs...
Write a value to a disk persis …
0
votes
1answer
36 views
JPA Entity Foreign Keys mapped to a Primary Key
Is it possible for a Primary Key of an nested Entity to be used as the Primary Key of the Nest Entity?
For Example:
If I had a Entity 'Staff' who has a primary key 'EID' and ha …
1
vote
1answer
35 views
Persistence Unit SQLException No suitable driver
I have a j2ee application deployed on GlassFish.
I have mysql jars in GlassFish's lib directory.
I am trying to use JPA, and my persistence file is:
<persistence-unit name="tea …
0
votes
2answers
52 views
GWT+hibernate for highly interactive web application?
As a Java developer new to the web development environment, I was quite excited to find Grail which provides a great framework especially the convenience of abstracting DB operatio …
11
votes
9answers
387 views
ORM/Persistence layer Advice
Hi all
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.
For this project, I really don't care on how the data …
0
votes
3answers
39 views
java beans: difference between persistent field and persistent property?
I got the impression that if we use persistent fields, there is no need for getter methods since the entity manager references the instance variables directly. However, when I remo …
