Unicode C++
Unicode C++
Firebase JSON Put and Patch
See more JSON Examples
Demonstrates how to apply Firebase put and patch events to a JSON database.Chilkat Unicode C++ Downloads
#include <CkJsonObjectW.h>
void ChilkatSample(void)
{
const wchar_t *json1 = L"{\"a\": 1, \"b\": 2}";
CkJsonObjectW json;
// Use Firebase delimiters for JSON paths.
json.put_DelimiterChar(L"/");
json.Load(json1);
json.FirebasePut(L"/c",L"{\"foo\": true, \"bar\": false}");
// Output should be: {"a":1,"b":2,"c":{"foo":true,"bar":false}}
wprintf(L"1) %s\n",json.emit());
json.FirebasePut(L"/c",L"\"hello world\"");
// Output should be: {"a":1,"b":2,"c":"hello world"}
wprintf(L"2) %s\n",json.emit());
json.FirebasePut(L"/c",L"{\"foo\": \"abc\", \"bar\": 123}");
// Output should be: {"a":1,"b":2,"c":{"foo":"abc","bar":123}}
wprintf(L"3) %s\n",json.emit());
// Back to the original..
json.FirebasePut(L"/",L"{\"a\": 1, \"b\": 2}");
wprintf(L"4) %s\n",json.emit());
json.FirebasePut(L"/c",L"{\"foo\": true, \"bar\": false}");
json.FirebasePatch(L"/c",L"{\"foo\": 3, \"baz\": 4}");
// Output should be: {"a":1,"b":2,"c":{"foo":3,"bar":false,"baz":4}}
wprintf(L"5) %s\n",json.emit());
json.FirebasePatch(L"/c",L"{\"foo\": \"abc123\", \"baz\": {\"foo\": true, \"bar\": false}, \"bax\": {\"foo\": 200, \"bar\": 400} }");
// Output should be: {"a":1,"b":2,"c":{"foo":"abc123","bar":false,"baz":{"foo":true,"bar":false},"bax":{"foo":200,"bar":400}}}
wprintf(L"6) %s\n",json.emit());
}