LO 6.3 - attempting to save a simple table from design view I get the following errors:
SQL Status: S1000
Error while saving the table design
Error code: 1
firebird_sdbc error:
*unsuccessful metadata update
*CREATE TABLE AssetDetail failed
*Identity column AssetID of table AssetDetail must be of exact number type with zero scale
caused by
‘CREATE TABLE “AssetDetail” (“AssetID” NUMERIC(15,1) GENERATED BY DEFAULT AS IDENTITY,“Description” VARCHAR(100) NOT NULL,“MakeID” INTEGER NOT NULL,“Model” VARCHAR(100),“Serial_Number” VARCHAR(100),“VendorID” INTEGER NOT NULL,“AcquisitionValue” DECIMAL(15,2) NOT NULL,“DateAcquired” DATE NOT NULL,“Warranty” INTEGER NOT NULL,“ReplacementCost” DECIMAL(15,2) NOT NULL,“DateDisposed” DATE,“DisposalPrice” DECIMAL(15,2) NOT NULL,“LocationID” INTEGER NOT NULL,“CategoryID” INTEGER NOT NULL,“TypeID” INTEGER NOT NULL,“Donated” BOOLEAN NOT NULL,“LoanStatus” BOOLEAN NOT NULL,“StatusID” INTEGER NOT NULL,“DepreciableLife” INTEGER,“DepreciationMethod” CHAR(2) NOT NULL,“TagID” INTEGER NOT NULL,“TagDate” DATE,“TagExpiry” DATE,“Comments” VARCHAR(32765),“Picture” BLOB, PRIMARY KEY (“AssetID”))’
I did try Integer, BigInteger and Small Integer which all give similar errors - this time starting with:
Error code: 1
firebird_sdbc error:
*unsuccessful metadata update
*CREATE TABLE AssetDetail failed
*Dynamic SQL Error
*SQL error code = -204
*Data type unknown
*Implementation limit exceeded
*COLUMN <Missing arg #1 - possibly status vector overflow>
caused by
While I could return to building this database with embedded HSQLDB it seemed appropriate to embrace Firebird but it is a bit discouraging to encounter such an error effectively at the outset.