Skip to content

Latest commit

 

History

History
55 lines (35 loc) · 1.38 KB

README.md

File metadata and controls

55 lines (35 loc) · 1.38 KB

#VFPJSON JSON library for VFP. WARNING Too slow to used with large data

json_encode(xExpr)

Returns a string, that is the json of any expression passed.

json_decode(cJson)

Returns an object, from the string passed.

json_getErrorMsg()

Returns empty if no error found in last decode.

recordToJson()

Returns the json representation for current record.

tableToJson()

Returns the json representation for current table Warning need to be changed for large table, because use dimension aInfo[reccount()] For large table should change to create the string record by record.

###Examples

set procedure json additive

oPerson = json_decode(' { "name":"Ignacio" , "lastname":"Gutierrez", "age":33 } ')
if not empty(json_getErrorMsg())
	? 'Error in decode:'+json_getErrorMsg())
	return
endif
? oPerson.get('name') , oPerson.get('lastname')

obj = oJson.decode('{"jsonrpc":"1.0", "id":1, "method":"sumArray", "params":[3.1415,2.14,10],"version":1.0}')
? obj.get('jsonrpc'), obj._jsonrpc
? obj.get('id'), obj._id
? obj.get('method'), obj._method
? obj._Params.array[1], obj._Params.get(1)


cJson = ' {"server":"imap.gmail.com", "user":"billgates", "password":"melinda" , "port":895, "auth":false, "ssl":false, "timeout":20, "error":404}' 
? cJson
oSmtp = json_decode(cJson)
cJson =  json_encode(oSmtp)


? json_encode(_screen)