Skip to content
blixit edited this page Jan 19, 2017 · 1 revision
- [DQuery, ... ]
DQuery = QueryName [QueryArgs] 
QueryName = 'DatabaseTable' | 'Function'
QueryArgs = '(' Object ')'  

Example :

-
    #delete users if id=5
    Users({if:["id = 5"]}) 
    
    #delete all users  
    Users 
    
    /* delete if id=1825 and immatriculation = 'FR 456 DC E'
    immatriculation value is a random value for this wiki */
    Cars({if:["id = 1825 AND immatriculation = 'FR 456 DC E' "]}) 
Clone this wiki locally