Skip to content

andersonlugarinhoramos/simple-json-dataset

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 

Repository files navigation

Simple-JSON-DataSet for Delphi

JSONObject as DataSet

use
  Simple.JSON.DataSet;

begin
  DataSet.LoadFromJSON(JSONObject);    
end.

JSONArray as DataSet

use
  Simple.JSON.DataSet;

begin
  DataSet.LoadFromJSON(JSONArray);
end.

JSONString as DataSet

use
  Simple.JSON.DataSet;

begin
  DataSet.LoadFromJSON(String);
end.

DataSet as JSONObject

use
  Simple.JSON.DataSet;

begin
  DataSet.ToJSONObject;
end.

DataSet as JSONArray

use
  Simple.JSON.DataSet;

begin
  DataSet.ToJSONArray;
end.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages