![]() |
Prev | Next | log_table |
integer
and is the primary key for this table.
Its initial value is zero, and it increments by one for each row.
text
and is one of the following values:
command
, error
, warning
.
begin
,
followed by white space,
followed by the name of the command.
If optional arguments follow the command name,
they are included after the command name and are separated by spaces.
end
.
If end
does not appear after the command starts,
the command failed to finish.
unix_time
in the log message with
message_type = 'command'
and with
message = 'begin command'
is used as the random seed during the specified
command
.
text
.
If it is not null
,
message
must be error
and it is the input
table in which the error occurred.
integer
.
If it is not null
,
table_name
is not
null
and
row_id
is the primary key value in
the specified table where the error occurred.
integer
and is
the return value of the C++ function std::time
; i.e.,
the number of seconds since January 1, 1970.
You can convert it to GMT with the SQL command
select datetime(unix_time,'unixepoch') from log;
text
and is the message.