The following structure defines the SQL insert syntax in LiteDB. Keyworks are case-insensitive.
INSERT INTO {collection}[: {autoIdType}]
VALUES {doc0} [, {docN}]
collectionis the name of the collection where the documents will be insertedautoIdTypeis one of the supported auto id types supported (GUID,INT,LONG,OBJECTID). If this construct is not present, the default value isOBJECTID.- Every document after keyword
VALUESmust be a valid JSON object. Documents must be comma-separated.