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
{ "a": 5.0, "tab": [], "key": "keyId" }
admin
node count "keyId" /
mentdb
3
admin
node fields "keyId" /
mentdb
[ "a", "tab", "key" ]
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
{ "a": 5.0, "tab": [ "test", "test2" ], "key": "keyId" }
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
{ "a": 5.0, "tab": [ "test", "test", "test2", "test2" ], "key": "keyId" }
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
{ "a": 5.0, "tab": [ "test", "test2", "test2", "test2" ], "key": "keyId" }
admin
node uobject "keyId" / a 8 NUM;
mentdb
Updated with successful.
admin
node show "keyId"
mentdb
{ "a": 8.0, "tab": [ "test", "test2", "test2", "test2" ], "key": "keyId" }
admin
node darray "keyId" /tab 0;
mentdb
Deleted with successful.
admin
node show "keyId"
mentdb
{ "a": 8.0, "tab": [ "test2", "test2", "test2" ], "key": "keyId" }
admin
node dobject "keyId" / a;
mentdb
Deleted with successful.
admin
node show "keyId"
mentdb
{ "tab": [ "test2", "test2", "test2" ], "key": "keyId" }