-
Notifications
You must be signed in to change notification settings - Fork 0
insert
blixit edited this page Jan 19, 2017
·
1 revision
+ [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
}