Page 1 of 1
HB_DBCreateTemp
Posted: Sun Feb 02, 2020 4:42 pm
by Otto
Hello,
does someone know if a memory file can be accessed by another program, too,
And if yes, how can I open the file.
Thank you in advance
Otto
Re: HB_DBCreateTemp
Posted: Mon Feb 03, 2020 12:26 pm
by karinha
Re: HB_DBCreateTemp
Posted: Mon Feb 03, 2020 8:05 pm
by MOISES
Does it work under xHarbour?
Re: HB_DBCreateTemp
Posted: Mon Feb 03, 2020 10:23 pm
by Otto
Hello,
Thank you for your help.
In the meantime, I saw that this opens the file in exclusive.
So I can't use it to exchange data between sessions in mod harbour.
But Antonio suggested another way:
HB_setenv(), HB_getenv().
This is working for me.
Best regards,
Otto
Function Main()
hb_SetEnv( "PASSWORD","1234")
? hb_GetEnv( "PASSWORD" )
return nil
? hb_GetEnv( "PASSWORD" )
Please see all my browsers show 1234 in all sessions gives back 1234.
If I shut down the server and restart
HB_getenv() is empty.
This way, I do not have to store my encryption password on the server.