user2640305
user2640305

Reputation: 71

Hibernate with oracle dblink implementation

Just new with hibernate, is there a way to implement oracle dblink on hibernate? e.g. select * from tablename@dblink to be used in hql?

Upvotes: 6

Views: 2532

Answers (1)

Julien
Julien

Reputation: 1097

Creating a SYNONYM in Oracle for tablename@dblink and configuring your Hibernate entity to map this synonym should do the trick.

Upvotes: 4

Related Questions