i make some tests and i find the reason why my target couldn't import my
Oracle schema :

Inside of my target, instead of :schemaName="XE" I use my UserName and it
worked;

<target name="generate" depends="sett,clean,create.dir">
                
                <echo message="Import schema"/>
                <cdbimport map="src/resources/riMap.map.xml" 
                        overwriteExisting="true"
                        schemaName="ROOT"
                        adapter="org.apache.cayenne.dba.oracle.OracleAdapter"
                        driver="oracle.jdbc.driver.OracleDriver"
                        url="jdbc:oracle:thin:@localhost:1521:XE" 
                        username="root"
                        password="root"/>
        </target>
-- 
View this message in context: 
http://cayenne.195.n3.nabble.com/Help-cdbimport-Oracle-tp1876015p1878426.html
Sent from the Cayenne - User mailing list archive at Nabble.com.

Reply via email to