Hi Raja!

Good hint! I guess there is no reasonable limitation of the "group-member-set" length, is there? So increasing the x in varchar(x) would be no good?

Oliver

Raja wrote:
Dear Dev/Users,

There is a problem in schema for Mysql which declares PROPERTY_VALUE as varchar(255) which causes problem

CREATE TABLE PROPERTIES (
 VERSION_ID          bigint       NOT NULL,
 PROPERTY_NAMESPACE  varchar(50)   NOT NULL,
 PROPERTY_NAME       varchar(50)   NOT NULL,
 PROPERTY_VALUE    varchar(255)         NOT NULL,
 PROPERTY_TYPE       varchar(50)   NOT NULL,
 IS_PROTECTED        tinyint(1)    NOT NULL,
 PRIMARY KEY         (VERSION_ID,PROPERTY_NAMESPACE,PROPERTY_NAME)
) TYPE=InnoDB

It is truncating if "group-member-set" length increases which causes JDOM paring exception.I have changed the datatype to "text". It is working fine.
Is it a issue?


Raja


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



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



Reply via email to