Hi to all!
I need some help on how to specify to middlegen, that a table come from a different schema, and not from the one specified in the DB configuration file.
Example:
I've two tables coming from 2 schemas:
A -> SchemaA
B -> SchemaB
Table B has a reference to table A.
So in the middlegen DB conf file, i write:
<property name="database.schema" value="SchemaA"/>
and in the middlegen ant file:
<table name="A"/>
<table name="B"/>
But, obviously this do not work... i've tryed to use
<table name="SchemaB.B"/>
also this do not work, and even don't specify the schema (writing <property name="database.schema" value=""/>) do not work...
How can i do?
Thaks!
|