Difference between revisions of "Entity Table"
Jump to navigation
Jump to search
(Created page with "The <code>Entity</code> table holds information gleaned from exploited media. <syntaxhighlight lang="SQL"> CREATE TABLE "Entity" ( "ID" uuid NOT NULL, "MediaID" uuid...") |
|||
| Line 1: | Line 1: | ||
| − | The <code>Entity</code> table holds information gleaned from exploited media. | + | The <code>[Entity]</code> table holds information gleaned from exploited media. |
<syntaxhighlight lang="SQL"> | <syntaxhighlight lang="SQL"> | ||
Revision as of 09:12, 8 November 2020
The [Entity] table holds information gleaned from exploited media.
CREATE TABLE "Entity" (
"ID" uuid NOT NULL,
"MediaID" uuid NOT NULL,
"FileID" uuid NOT NULL,
"EntityTypeID" smallint NOT NULL,
"EntityStringID" uuid NOT NULL,
"Offset" bigint DEFAULT (-1) NOT NULL,
"ObjectID" uuid NOT NULL,
"ObjectTypeID" smallint DEFAULT 0 NOT NULL,
"Length" bigint DEFAULT 0 NOT NULL,
"DataTypeID" int NOT NULL
);