Does Hibernate supports multiple schemas connection ?
i want to connect to multiple schema's on the same data base using
hibernate...
my hbm.xml looks like this
<hibernate-mapping>
<class name="SampleClass" table="SampleTable" schema="DynamicSchema">
.
.
.
.
.
</hibernate-mapping>
i need to enter the schema name as parameter
and change it dynamically....
is this possible or are there another way in hibernate ?
thanks in advance and
some code wouldn't kill any one :)

