[jbpm-dev] [Design of JBoss jBPM] - Re: Drill down on database incompatibilities

thomas.diesler@jboss.com do-not-reply at jboss.com
Wed Nov 19 17:03:18 EST 2008


The full list of incompatibilities against jbpm-3.2.2 that show up in the sybase script


  | < create table JBPM_ACTION (... EXPRESSION_ varchar(4000) null, ...)
  | > create table JBPM_ACTION (... EXPRESSION_ text null,          ...)
  | 
  | < create table JBPM_COMMENT (... MESSAGE_ varchar(4000) null, ...)
  | > create table JBPM_COMMENT (... MESSAGE_ text null,          ...)
  | 
  | < create table JBPM_DELEGATION (... CLASSNAME_ varchar(4000) null, CONFIGURATION_ varchar(4000) null, ...)
  | > create table JBPM_DELEGATION (... CLASSNAME_ text null,          CONFIGURATION_ text null,          ...)
  | 
  | < create table JBPM_EXCEPTIONHANDLER (... EXCEPTIONCLASSNAME_ varchar(4000) null, ...)
  | > create table JBPM_EXCEPTIONHANDLER (... EXCEPTIONCLASSNAME_ text null,          ...)
  | 
  | < create table JBPM_JOB (... EXCEPTION_ varchar(4000) null, ...)
  | > create table JBPM_JOB (... EXCEPTION_ text null,          ...)
  | 
  | < create table JBPM_LOG (... MESSAGE_ varchar(4000) null, EXCEPTION_ varchar(4000) null, ... OLDSTRINGVALUE_ varchar(4000) null, NEWSTRINGVALUE_ varchar(4000) null, ...)
  | > create table JBPM_LOG (... MESSAGE_ text null,          EXCEPTION_ text null,          ... OLDSTRINGVALUE_ text null,          NEWSTRINGVALUE_ text null,          ...)
  | 
  | < create table JBPM_MODULEDEFINITION (... NAME_ varchar(4000) null, ...)
  | > create table JBPM_MODULEDEFINITION (... NAME_ varchar(255) null,  ...)
  | 
  | < create table JBPM_NODE (... DESCRIPTION_ varchar(4000) null,                                    ...)
  | > create table JBPM_NODE (... DESCRIPTION_ text null,          PARENTLOCKMODE_ varchar(255) null, ...)
  | 
  | < create table JBPM_PROCESSDEFINITION (... DESCRIPTION_ varchar(4000) null, ...)
  | > create table JBPM_PROCESSDEFINITION (... DESCRIPTION_ text null,          ...)
  | 
  | < create table JBPM_TASK (... DESCRIPTION_ varchar(4000) null, ...)
  | > create table JBPM_TASK (... DESCRIPTION_ text null,          ...)
  | 
  | < create table JBPM_TASKINSTANCE (... DESCRIPTION_ varchar(4000) null, ...)
  | > create table JBPM_TASKINSTANCE (... DESCRIPTION_ text null,          ...)
  | 
  | < create table JBPM_TRANSITION (... DESCRIPTION_ varchar(4000) null, ...)
  | > create table JBPM_TRANSITION (... DESCRIPTION_ text null,          ...)
  | 
  | < create table JBPM_VARIABLEINSTANCE (... STRINGVALUE_ varchar(4000) null, ...)
  | > create table JBPM_VARIABLEINSTANCE (... STRINGVALUE_ varchar(255) null, ...)
  | 

View the original post : http://www.jboss.com/index.html?module=bb&op=viewtopic&p=4190646#4190646

Reply to the post : http://www.jboss.com/index.html?module=bb&op=posting&mode=reply&p=4190646



More information about the jbpm-dev mailing list