jon         02/03/07 10:11:13

  Modified:    src/templates/sql/base/oracle db.props
  Log:
  From: [EMAIL PROTECTED]
  Reply-To: [EMAIL PROTECTED]
  Date: Thu,  7 Mar 2002 08:12:24 -0800 (PST)
  To: [EMAIL PROTECTED]
  Subject:   Oracle support
  
  The Oracle schema is still not created correctly.
  
  SCARAB_ATTACHMENTS column ATTACHMENT_DATA is defined in scarab-schema.xml
  as having a type of VARBINARY.  Turbine maps this to a column type of RAW
  for an Oracle database.  Oracle's definition of a RAW column requires a
  length attached.  I had previously submitted a patch to build.xml
  that replaced the RAW with LONG RAW.  This patch was removed at about the
  same time that Turbine corrected defining BOOLEANINT as INTEGER(1).
  
  Can we get a correction to this incorporated into Turbine?  I think
  that it would be safe to map VARBINARY to the Oracle BLOB type.
  
  Revision  Changes    Path
  1.5       +1 -1      jakarta-turbine-torque/src/templates/sql/base/oracle/db.props
  
  Index: db.props
  ===================================================================
  RCS file: /home/cvs/jakarta-turbine-torque/src/templates/sql/base/oracle/db.props,v
  retrieving revision 1.4
  retrieving revision 1.5
  diff -u -r1.4 -r1.5
  --- db.props  18 Feb 2002 19:18:50 -0000      1.4
  +++ db.props  7 Mar 2002 18:11:13 -0000       1.5
  @@ -22,7 +22,7 @@
   TIME = DATE
   TIMESTAMP = DATE
   BINARY = LONG RAW
  -VARBINARY = RAW
  +VARBINARY = BLOB
   LONGVARBINARY = LONG RAW
   NULL =
   OTHER =
  
  
  

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

Reply via email to