Hi team,
Thank you for developing the Database Adapter. We've successfully tested your demo and attempted to integrate it with our ElevateDB by creating a database table for testing purposes.
However, we've encountered a few issues:
- Sometimes double-clicking on a task opens it, but other times it doesn't.
- We're unable to modify the date/time fields using your date picker.
Could you please review our table structure? It's possible we might have misconfigured something.
CREATE TABLE "PROJEKTE_DETAILS" (
"mindex" INTEGER GENERATED BY DEFAULT AS IDENTITY (START WITH 0, INCREMENT BY 1),
"projekt_mindex" INTEGER,
"vWBS" VARCHAR(32) COLLATE "UNI_CI",
"vName" VARCHAR(255) COLLATE "UNI_CI",
"vDescription" CLOB COLLATE "UNI_CI",
"vPlannedStart" TIMESTAMP,
"vPlannedEnd" TIMESTAMP,
"vDuration" VARCHAR(10) COLLATE "UNI_CI",
"vDependencies" VARCHAR(20) COLLATE "UNI_CI",
"vProgress" INTEGER,
"vStatename" VARCHAR(255) COLLATE "UNI_CI",
CONSTRAINT "MINDEX" PRIMARY KEY ("mindex")
)