Search found 15 matches: deserialize

Return to advanced search

Is hb-serialize() compatible between xHb & Harbour

Guys,
Anyone with experience or knowledge that knows whether hb-serialize()/hb_deserialize() is compatible or not between Harbour's and xHarbour's version? Tq
by hua
Fri Dec 17, 2021 7:18 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Is hb-serialize() compatible between xHb & Harbour
Replies: 2
Views: 435

Re: An advice needed to save same variables and its value to mem

field->memo := hb_serialize( aVars )

...

aVars := hb_deserialize( field->memo )
by Antonio Linares
Tue Dec 29, 2020 4:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: An advice needed to save same variables and its value to mem
Replies: 7
Views: 848

Re: DigitalPersona SDK

... from this way: oTem := CreateObject("DPFPShrX.DPFPTemplate") The problem is happening when I try to do this: oTem:DESERIALIZE( oRec:Bio ) I think it's is happening because oRec:Bio is a BLOB Field, and Deserialize() wants a vbasic BYTEARRAY.
by vilian
Thu Feb 06, 2020 7:21 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DigitalPersona SDK
Replies: 25
Views: 3362

Re: funciones de FWH y Harbour en un archivo .txt

__clsVerify(<nClassH>)-><acBrokenMessages>|Nil __objAddData(<oObject>,<cDataName>)->oObject __objAddInline(<oObject>,<cInlineName>,<bInline>)->oObject __objAddMethod(<oObject>,<cMethodName>,<nFuncPtr>)->oObject __objDelInline(&l...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710

Re: funciones de FWH y Harbour en un archivo .txt

__clsVerify __objAddData __objAddInline __objAddMethod __objDelInline __objDelMethod __objDelMethod __objDerivedFrom __objGetMethodList __objGetValueList __objModInline __objModMethod __objSetValueList __Pack __Run __Zap AAdd Abs AChoice AClone ACopy ACos AddASCII AddMonth ADel ADir ADSBlob2File ADS...
by carlos vargas
Sat Oct 21, 2017 8:43 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5710

Re: Grabar un objeto

Harbour, ese gran desconocido, tiene dos funciones a tal fin: hb_Serialize() y hb_Deserialize()   HB_SERIALIZE( <xData>, [ <lNumSizes> = .F. ], ;                  [ <cCdpIn> = HVMCP ], [ <cCdpOut> = HVM...
by hmpaquito
Thu Jul 06, 2017 11:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar un objeto
Replies: 5
Views: 821

Re: Harbour-32.dll

HB_FUN_HB_CODEPAGE_HR646 @367 HB_FUN_HB_CODEPAGE_HR852 @368 HB_FUN_HB_CODEPAGE_HRISO @369 HB_FUN_HB_CODEPAGE_HRWIN @370 HB_FUN_HB_CODEPAGE_HU852 @371 HB_FUN_HB_CODEPAGE_HU852C @372 HB_FUN_HB_CODEPAGE_HUISO @373 HB_FUN_HB_CODEPAGE_HUWIN @374 HB_FUN_HB_CODEPAGE_IS850 @375 HB_FUN_HB_CODEPAGE_IS861 @376...
by pgfdz
Fri May 29, 2015 8:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Harbour-32.dll
Replies: 5
Views: 2359

Re: ADS or similar products

Doug: I'd like to see some working code if you don't mind. Thanks, Randal Hi Marco You can actually do client server with [x}Harbour code alone. It doesn't give you all the features you may get with an SQL based product but it is very fast and easy to understand. I did exactly that when faced with t...
by Randal
Tue Mar 01, 2011 10:19 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS or similar products
Replies: 21
Views: 4795

Re: ADS or similar products

Hi Marco You can actually do client server with [x}Harbour code alone. It doesn't give you all the features you may get with an SQL based product but it is very fast and easy to understand. I did exactly that when faced with the exact same situation that you seem to be facing. I used IP sockets as m...
by xProgrammer
Tue Mar 01, 2011 2:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADS or similar products
Replies: 21
Views: 4795

Re: FW/Clipper Conversion - Handling Stored Arrays

I'll probably just use XML in a conversion routine or HD_Serialize and HB_Deserialize. Thank you though. It's hard to believe that there is no way to decode a clipper array out of a memo field -- an array that is nested two and three levels deep. This must have been an RDD thing becuase if IRC, you ...
by arpipeline
Tue Apr 28, 2009 2:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW/Clipper Conversion - Handling Stored Arrays
Replies: 6
Views: 1115

... Alguna manera para ver los metodos disponibles de un control OleAuto? Error description: Error DPFPShrX.DPFPTemplate/3 DISP_E_MEMBERNOTFOUND: DESERIALIZE Args: Stack Calls =========== Called from: source\rtl\win32ole.prg => TOLEAUTO:DESERIALIZE(0) PD Este comportamiento es independiente ...
by Biel EA6DD
Wed Nov 05, 2008 4:35 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ActiveX ctrl de eventos y manejo de parametros
Replies: 4
Views: 947

Hi Antonio Thanks for the link. Interesting, but not really what I want (I think). From my experiments to date I think I can do what I want to do without needing any C code and in a way that integrates very nicely into my application architecture. My impression is that leto passes data by position w...
by xProgrammer
Thu Aug 14, 2008 10:25 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Client Server Database Access the xBase Way
Replies: 39
Views: 11768

Client Server Database Access the xBase Way

Hi all Because I need my application to run reasonably efficiently across a VPN I need to move to a client server architecture. That seemed to mean that I would have to move to an SQL based solution. That should be quite possible but whilst I can use SQL and have done so in the past (but not from xB...
by xProgrammer
Thu Aug 14, 2008 2:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Client Server Database Access the xBase Way
Replies: 39
Views: 11768

Biel, Harbour proporciona HB_SERIALIZE() y HB_DESERIALIZE() para guardar y restaurar items, pero no soporta codeblocks. Posiblemente podrías acceder y guardar el pcode de un codeblock, pero las referencias a variables locales y estáticas, no te servirían de una vez para otra, salvo que usases esa in...
by Antonio Linares
Sat May 17, 2008 8:52 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Grabar y restaurar codeblocks
Replies: 2
Views: 765

Re: HOLA COMO PUEDO HACER QUE SE GUARDEN DATOS AUTOMATICAMEN

HOLA NO SE SI SE PUEDA HACER QUE MI PROGRAMA GUARDE LOS DATOS QUE SE ESTAN CAPTURANDO AUTOMATICAMENTE POR PERIODOS DE TIEMPO COMOLO HACE EL Microsoft Office Word PARA QUE LOS DATOS ESTEN GUARDADOS ANTES QUE EL USUARIO SALGA DEL PROGRAMA POR SI ALGUN CORTE DE LUZ O ATORON DE LA COMPUTADORA Y NO PERD...
by andresreyes_mzt
Thu Apr 10, 2008 3:26 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: GUARDAR DATOS AUTOMATICAMENTE (YA RESUELTO, MUCHAS GRACIAS)
Replies: 6
Views: 2457

Return to advanced search