This one time, at band camp, John Wang said:

JW>The database config I am using is:
JW>  <database name="test" engine="oracle">
JW>    <driver class-name="oracle.jdbc.driver.OracleDriver"
JW>            url="jdbc:oracle:thin:@bpromote:1521:ORCL?user=system">
JW>      <param name="password" value="manager" />
JW>    </driver>
JW>  <mapping href="mapping.xml" />
JW>  </database>
JW>
JW>What is the problem with this exception?

John,

I know that I've seen Oracle use the above syntax just fine before,
but try this:


<database name="test" engine="oracle">
    <driver class-name="oracle.jdbc.driver.OracleDriver"
            url="jdbc:oracle:thin:@bpromote:1521:ORCL">
        <param name="user" value="system" />
        <param name="password" value="manager" />
    </driver>
    <mapping href="mapping.xml" />
</database>

Bruce
--
perl -e 'print unpack("u30","<0G)U8V4\@4VYY9&5R\"F9E<G)E=\$\!F<FEI+F-O;0\`\`");'

----------------------------------------------------------- 
If you wish to unsubscribe from this mailing, send mail to
[EMAIL PROTECTED] with a subject of:
        unsubscribe castor-dev

Reply via email to