Skip to content

Database Structure not displayed #1969

@cimperia

Description

@cimperia

I ran this DDL statement

CREATE TABLE [my_table] (
  [id] INTEGER NOT NULL  
, [r_type] NVARCHAR(1) NOT NULL CHECK (r_type IN ('A','P','S')) DEFAULT ('S') -- RESOURCE TYPE Array, Plural, Single
, [symbol] NVARCHAR(50) NOT NULL
, [default_text] NVARCHAR(4000)
, CHECK ((r_type = 'S' AND default_text IS NOT NULL) OR (r_type IN ('A', 'P')))
, CONSTRAINT [PK_Keys] PRIMARY KEY ([id])
, CONSTRAINT [UK1_Keys] UNIQUE ([symbol])
);

The my_table is listed under the "Database Structure" tab, but the table columns are not listed, ie there's no chevron and the structure cannot be expanded and it's not possible to generate a CREATE statement for it.

What operating system are you using?

  • Windows: ( version: 10___ )

What is your DB4S version?

  • 3.11.2

Metadata

Metadata

Assignees

Labels

bugConfirmed bugs or reports that are very likely to be bugs.

Type

No type

Projects

No projects

Relationships

None yet

Development

No branches or pull requests

Issue actions