6

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?

neubert
  • 15,947
  • 24
  • 120
  • 212

1 Answers1

4

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

Julien
  • 1,087
  • 7
  • 15