Closed benrojas01 closed 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.
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 .
Guardalo con STRTOFILE(lcContenidoDelJSON, 'c:\ruta\del\fichero.json')
y luego lo recuperas con obj = _SCREEN.json.parse(FILETOSTR('c:\ruta\del\fichero.json'))
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 .
Hola Irwin
me puedes por favor explicar como convierto un cursor en un archivo .json
gracias