Need help with Hibernate? Read this first:
http://www.hibernate.org/ForumMailingli ... AskForHelp
Hibernate version:
Hibernate 3.0
Hy, I'm a newbie.
I would like to know how solve my problem with the more elegant solution.
For exemple:
I have one global (database+application) representing all the users and n distant (database+application) respresenting a user (or a set of users)
the schema is a priori the same for all the databases.
table USER
ID:
table TASK:
TASK_ID
USER_ID
the global and the distant databases works separately. So each n secondes, the user's server synchronized the data with the global server. But the synchronized data is restricted to the user datas.
In the exemple only the tasks with USER_ID=ID are synchronized (or USER_ID=ID1 OR USER_ID=ID2 in case we are several users)
I know that Hibernate as a replication and a filter features but How can i do this kind of synchronization job with this features ?
thanks in advance
nicolas