You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
BLOB/CLOB content preview and viewer in the Data Browser and SQL console.
Details view: the detected content type (image, JSON, XML, HTML, PDF, ZIP, GZIP) is shown
next to a LOB value, and image values show an inline thumbnail. The type and thumbnail are
loaded on demand off the event dispatch thread and cancelled when the details view is
closed. Clicking the value or the thumbnail opens the content viewer.
Content viewer ("View..."): renders images, text with syntax highlighting, ZIP archives
as an entry list, and anything else as a hexadecimal dump. "Save to file..." always exports the
complete content, and "Copy to clipboard" copies the shown text or image.
"Open externally" button opens the content in the operating system's default application.
A LOB holding a single compressed file (a GZIP stream, or a ZIP with exactly one entry) is
shown decompressed, with the content type of the inner file detected and rendered directly.
Multi-entry ZIP archives keep the entry list, now with columns sized to their content.
PDF documents are rendered inline (page navigation and zoom) using Apache PDFBox.
Fixed: "Generate DDL Script" could emit a UNIQUE constraint with its columns repeated
several times (e.g. "UNIQUE (A, B, A, B, ...)"), producing invalid DDL, when reading an
H2 database. The column list of a UNIQUE constraint is now de-duplicated. #132
Fixed: "Generate DDL Script" left foreign-key references qualified with the source schema
(e.g. "REFERENCES SRC.T") while the created tables themselves were unqualified. When no
target schema is specified, the generated script is now consistently schema-independent. #132