> thx for your reply first. could you tell me the values of the properties
> oracle.lib.dir and oracle-jdbc.jar in build.properties files.  very
> appreciate it.

oracle.lib.dir should contain the path where your oracle jdbc drivers are.
oracle-jdbc.jar the name of the jar that contains the jdbc driver...

Example:
oracle.lib.dir=/oracle/app/oracle/product/10.1.0/db_2/jdbc/lib
oracle-jdbc.jar=${oracle.lib.dir}/classes12.jar

Here's a snippet of a Domain.xml:
---
<definition>
<store name="OracleStore">
  <nodestore classname="org.apache.slide.store.impl.rdbms.JDBCStore">
    <parameter 
name="adapter">org.apache.slide.store.impl.rdbms.OracleRDBMSAdapter</parameter>
    <parameter name="driver">oracle.jdbc.driver.OracleDriver</parameter>
    <parameter name="url">jdbc:oracle:thin:@localhost:1521:slide</parameter>
        <parameter name="user">slide</parameter>
        <parameter name="password">secret</parameter>
    <parameter name="dbcpPooling">true</parameter>
    <parameter name="maxPooledConnections">10</parameter>
    <!-- Warning: don't use serializable isolation! -->
    <!-- <parameter name="isolation">SERIALIZABLE</parameter> -->
    <parameter name="compress">false</parameter>
  </nodestore>
  <contentstore>
    <reference store="nodestore" />
  </contentstore>
  <securitystore>
    <reference store="nodestore" />
  </securitystore>
  <lockstore>
    <reference store="nodestore" />
  </lockstore>
  <revisiondescriptorsstore>
    <reference store="nodestore" />
  </revisiondescriptorsstore>
  <revisiondescriptorstore>
    <reference store="nodestore" />
  </revisiondescriptorstore>
 </store>
<scope match="/" store="OracleStore"/>
</definition>
---

Cheers,
-- 
Davide Savazzi

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to