sql >> Database teknologi >  >> RDS >> Oracle

arbejde med json i oracle

Jeg er begyndt at bruge dette bibliotek, og det virker lovende:https://github.com/pljson/pljson

Nem at installere, og eksemplerne er gode.

For at bruge biblioteket i dit eksempel skal du tilføje disse variable til din procedure..

mapData     json;
results     json_list;
status      json_value;
firstResult json;
geometry    json;

....

Derefter kan du manipulere svaret som et json-objekt.

-- convert the result from the get to a json object, and show some results.
mapData := json(v_ans);

-- Show the status of the request
status := mapData.get('status');
dbms_output.put_line('Status = ' || status.get_string());

IF (status.get_string() = 'OK') THEN
  results := json_list(mapData.get('results'));
  -- Grab the first item in the list
  resultObject := json(results.head);

  -- Show the human readable address 
  dbms_output.put_line('Address = ' || resultObject.get('formatted_address').to_char() );
  -- Show the json location data 
  dbms_output.put_line('Location = ' || resultObject.get('geometry').to_char() );
END IF;

Kørsel af denne kode udsendes denne til dbms-output:

Status = OK
Address = "St Paul, MN 55105, USA"
Location = {
  "bounds" : {
    "northeast" : {
      "lat" : 44.9483849,
      "lng" : -93.1261959
    },
    "southwest" : {
      "lat" : 44.9223829,
      "lng" : -93.200307
    }
  },
  "location" : {
    "lat" : 44.9330076,
    "lng" : -93.16290629999999
  },
  "location_type" : "APPROXIMATE",
  "viewport" : {
    "northeast" : {
      "lat" : 44.9483849,
      "lng" : -93.1261959
    },
    "southwest" : {
      "lat" : 44.9223829,
      "lng" : -93.200307
    }
  }
}


  1. SESSIONTIMEZONE Funktion i Oracle

  2. T-SQL tirsdag #67:Ny sikkerhedskopiering og gendannelse af udvidede begivenheder

  3. SQL-visninger

  4. Sådan rettes "Konvertering mislykkedes ved konvertering af værdien til datatype" i SQL Server