pixelspark / catena

Catena is a distributed database based on a blockchain, accessible using SQL.
MIT License
302 stars 23 forks source link

Add top-level BEGIN...END statement type #54

Closed pixelspark closed 7 years ago

pixelspark commented 7 years ago

Add a top-level statement type that executes multiple statements in order, e.g.:

BEGIN
UPDATE x SET y=z;
UPDATE z SET q=w;
END;