You are viewing a plain text version of this content. The canonical link for it is here.
Posted to ojb-dev@db.apache.org by th...@apache.org on 2003/06/17 22:24:22 UTC

cvs commit: db-ojb/src/schema ojbcore-schema.xml

thma        2003/06/17 13:24:22

  Modified:    src/schema ojbcore-schema.xml
  Log:
  use VARBINARY instead of LONGVARBINARY to avoid Oracle problems
  
  Revision  Changes    Path
  1.5       +2 -2      db-ojb/src/schema/ojbcore-schema.xml
  
  Index: ojbcore-schema.xml
  ===================================================================
  RCS file: /home/cvs/db-ojb/src/schema/ojbcore-schema.xml,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- ojbcore-schema.xml	1 Apr 2003 14:06:12 -0000	1.4
  +++ ojbcore-schema.xml	17 Jun 2003 20:24:22 -0000	1.5
  @@ -56,8 +56,8 @@
     <table name="OJB_DMAP_ENTRIES" description="DMap entry table">
       <column name="ID" required="true" primaryKey="true" type="INTEGER"/>
       <column name="DMAP_ID" required="true" type="INTEGER"/>
  -    <column name="KEY_OID" type="LONGVARBINARY"/>
  -    <column name="VALUE_OID" type="LONGVARBINARY"/>
  +    <column name="KEY_OID" type="VARBINARY"/>
  +    <column name="VALUE_OID" type="VARBINARY"/>
     </table>
   
   </database>