Skip to content
blixit edited this page Jan 19, 2017 · 1 revision

Insert Query Specification

+ [IQuery, ... ]
IQuery = QueryName [QueryArgs] [ '{' QueryField, ... '}' ]
QueryName = 'DatabaseTable' | 'Function'
QueryArgs = '(' Object ')' 
QueryField = 'identifier' '=' Lvalue

Example :

+
    Users(){
        id = 5,
        name = 'blixit',
        age = 24
    } 
    Cars{
        id = 5,
        name = 'Toyota',
        immatriculation = 'FR 456 DC E' #it's a random value for this wiki
    } 
Clone this wiki locally