I haven’t seen any “direct” documentation showing Bonita Studio 6.5 Community Edition “Process Engine” could be connected to PostgreSQL. Everything I’ve found relates to the deployment environment configuration. Has anyone done this?
I’ve been working on this, but I get this error:
Caused by: org.bonitasoft.engine.platform.exception.SPlatformCreationException: org.postgresql.util.PSQLException: ERROR: type “longvarchar” does not exist
Position: 136
at org.bonitasoft.engine.platform.impl.PlatformServiceImpl.createTables(PlatformServiceImpl.java:179)
at org.bonitasoft.engine.api.impl.PlatformAPIImpl.createPlatform(PlatformAPIImpl.java:143)
… 18 more
Caused by: org.postgresql.util.PSQLException: ERROR: type “longvarchar” does not exist
Position: 136
Here is the table creation that failed:
Following SQL command failed: CREATE TABLE category (
tenantid BIGINT NOT NULL,
id BIGINT NOT NULL,
name VARCHAR(50) NOT NULL,
creator BIGINT,
description LONGVARCHAR,
creationDate BIGINT NOT NULL,
lastUpdateDate BIGINT NOT NULL,
UNIQUE (tenantid, name),
PRIMARY KEY (tenantid, id)
)
Anyone experience this error before? Below is the documentation I’ve been working with, but there are a few other changes that needed to made as well.
http://documentation.bonitasoft.com/database-configuration-1