admin
node create "keyId";
mentdb
Node keyId created with successful.
admin
node exist "keyId"
mentdb
1
admin
node delete "keyId";
mentdb
1
admin
node iobject "keyId" / a 5 NUM
mentdb
Inserted with successful.
admin
node iobject "keyId" / tab "[]" ARRAY
mentdb
Inserted with successful.
admin
node show "keyId"
mentdb
{<br> "a": 5.0,<br> "tab": [],<br> "key": "keyId"<br>}
admin
node count "keyId" /
mentdb
3
admin
node fields "keyId" /
mentdb
[<br> "a",<br> "tab",<br> "key"<br>]
admin
node iarray "keyId" /tab test STR;
mentdb
Inserted with successful.
admin
node iarray "keyId" /tab test2 STR
mentdb
Inserted with successful.
admin
node show "keyId"
mentdb
{<br> "a": 5.0,<br> "tab": [<br> "test",<br> "test2"<br> ],<br> "key": "keyId"<br>}
admin
node iarray "keyId" /tab 0 test STR;
mentdb
Inserted with successful.
admin
node iarray "keyId" /tab test2 STR
mentdb
Inserted with successful.
admin
node show "keyId"
mentdb
{<br> "a": 5.0,<br> "tab": [<br> "test",<br> "test",<br> "test2",<br> "test2"<br> ],<br> "key": "keyId"<br>}
admin
node is array "keyId" /tab
mentdb
1
admin
node is object "keyId" /
mentdb
1
admin
node select "keyId" /a
mentdb
5.0
admin
node uarray "keyId" /tab 1 test2 STR;
mentdb
Updated with successful.
admin
node show "keyId"
mentdb
{<br> "a": 5.0,<br> "tab": [<br> "test",<br> "test2",<br> "test2",<br> "test2"<br> ],<br> "key": "keyId"<br>}
admin
node uobject "keyId" / a 8 NUM;
mentdb
Updated with successful.
admin
node show "keyId"
mentdb
{<br> "a": 8.0,<br> "tab": [<br> "test",<br> "test2",<br> "test2",<br> "test2"<br> ],<br> "key": "keyId"<br>}
admin
node darray "keyId" /tab 0;
mentdb
Deleted with successful.
admin
node show "keyId"
mentdb
{<br> "a": 8.0,<br> "tab": [<br> "test2",<br> "test2",<br> "test2"<br> ],<br> "key": "keyId"<br>}
admin
node dobject "keyId" / a;
mentdb
Deleted with successful.
admin
node show "keyId"
mentdb
{<br> "tab": [<br> "test2",<br> "test2",<br> "test2"<br> ],<br> "key": "keyId"<br>}