Skip to content
Json encoder and decoder for VFP Visual Fox Pro
Branch: master
Clone or download
Latest commit 7eb5c77 Mar 2, 2015
Permalink
Type Name Latest commit message Commit time
Failed to load latest commit information.
README.md Update README.md Mar 2, 2015
json.prg json.prg Feb 15, 2015
test1.prg test1.prg Feb 15, 2015

README.md

#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)

You can’t perform that action at this time.