Yes, I saw the "Describe" command. However, in the grid that appears, only the first column (named "Column" :) ) has data. The rest of them ("Type", "Length", "Precision", "Scale" and "Nullable") are completely empty.
That MIGHT of course be because of SQLite's very "unstrict" way of applying field types.
Here is an example of a table in a DB that I opened in #D:
CREATE TABLE [Inspection] (
[Date] DATETIME NOT NULL,
[Deleted] BIT NOT NULL DEFAULT 0,
[ID] BIGINT PRIMARY KEY NOT NULL,
[ID_PumpStation] BIGINT NOT NULL,
[Note] VARCHAR(2000));
This is part of a dump from my test db. As you can see, this describes various types of table fields, but in #D, only the field names ("Column") appears. Perhaps the types do not map correctly to what #D expects?
Carl