Sample code for 30+ languages & platforms
Classic ASP

Firebase JSON Put and Patch

See more JSON Examples

Demonstrates how to apply Firebase put and patch events to a JSON database.

Chilkat Classic ASP Downloads

Classic ASP
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
</head>
<body>
<%
json1 = "{""a"": 1, ""b"": 2}"

set json = Server.CreateObject("Chilkat.JsonObject")

' Use Firebase delimiters for JSON paths.
json.DelimiterChar = "/"

success = json.Load(json1)
success = json.FirebasePut("/c","{""foo"": true, ""bar"": false}")
' Output should be: {"a":1,"b":2,"c":{"foo":true,"bar":false}}
Response.Write "<pre>" & Server.HTMLEncode( "1) " & json.Emit()) & "</pre>"

success = json.FirebasePut("/c","""hello world""")
' Output should be: {"a":1,"b":2,"c":"hello world"}
Response.Write "<pre>" & Server.HTMLEncode( "2) " & json.Emit()) & "</pre>"

success = json.FirebasePut("/c","{""foo"": ""abc"", ""bar"": 123}")
' Output should be: {"a":1,"b":2,"c":{"foo":"abc","bar":123}}
Response.Write "<pre>" & Server.HTMLEncode( "3) " & json.Emit()) & "</pre>"

' Back to the original..
success = json.FirebasePut("/","{""a"": 1, ""b"": 2}")
Response.Write "<pre>" & Server.HTMLEncode( "4) " & json.Emit()) & "</pre>"

success = json.FirebasePut("/c","{""foo"": true, ""bar"": false}")
success = json.FirebasePatch("/c","{""foo"": 3, ""baz"": 4}")
' Output should be: {"a":1,"b":2,"c":{"foo":3,"bar":false,"baz":4}}
Response.Write "<pre>" & Server.HTMLEncode( "5) " & json.Emit()) & "</pre>"

success = json.FirebasePatch("/c","{""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}}}
Response.Write "<pre>" & Server.HTMLEncode( "6) " & json.Emit()) & "</pre>"

%>
</body>
</html>