Irwin1985 / JSONFox

JSONFox is a free JSON parser written in Visual FoxPro 9.0
59 stars 34 forks source link

guardar archivo .json #22

Closed benrojas01 closed 3 years ago

benrojas01 commented 3 years ago

Hola Irwin

me puedes por favor explicar como convierto un cursor en un archivo .json

gracias

Irwin1985 commented 3 years ago
Do JSONFox.app
Use c:\mi\ruta\al\dbf alias miTabla
?_screen.json.cursortojson('miTabla')

Eso convierte todo tu cursor en formato JSON. Si quieres solo la fila actual entonces pasa .T. como segundo parámetro.

benrojas01 commented 3 years ago

Gracias Irwin,

eso lo he logrado sin problemas, ahora quiero guardar esto como un documento para consultarlo luego, es posible ? digamos algo como copy to micursorjson type json

saludos,

El lun, 3 may 2021 a las 1:05, Irwin Rodríguez @.***>) escribió:

Do JSONFox.app

Use c:\mi\ruta\al\dbf alias miTabla

?_screen.json.cursortojson('miTabla')

Eso convierte todo tu cursor en formato JSON. Si quieres solo la fila actual entonces pasa .T. como segundo parámetro.

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Irwin1985/JSONFox/issues/22#issuecomment-831041606, or unsubscribe https://github.com/notifications/unsubscribe-auth/AH3WOWMXLTSOU4SLOZRFLBDTLY4KNANCNFSM44ADP5ZA .

Irwin1985 commented 3 years ago

Guardalo con STRTOFILE(lcContenidoDelJSON, 'c:\ruta\del\fichero.json') y luego lo recuperas con obj = _SCREEN.json.parse(FILETOSTR('c:\ruta\del\fichero.json'))

benrojas01 commented 3 years ago

muchas gracias Irwin

El mié, 5 may 2021 a las 1:03, Irwin Rodríguez @.***>) escribió:

Guardalo con STRTOFILE(lcContenidoDelJSON, 'c:\ruta\del\fichero.json') y luego lo recuperas con obj = _SCREEN.json.parse(FILETOSTR('c:\ruta\del\fichero.json'))

— You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub https://github.com/Irwin1985/JSONFox/issues/22#issuecomment-832434472, or unsubscribe https://github.com/notifications/unsubscribe-auth/AH3WOWOFIRRVVWI3RNO4XTTTMDNSHANCNFSM44ADP5ZA .