Reputation: 71
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
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