I use Mysql via ADO with the functions of adofuncs.prg
when the program stays idle for a while, with the reuse I have this error
Error FW_OpenRecordSet(440)
- Code: Select all Expand view
- function FW_OpenRecordSet( oCn, cSql, nLockType, nCursorType, nMaxRecords, nOpt )
.
.
CATCH
if ! Empty( oCn )
FW_ShowAdoError( oCn ) <-------- Line 440
endif
oRs := nil
END
I think the problem is with the timeout of Mysql .
I saw that this problem was solved with MariaDB ,
Is it possible to solve this problem in ADO (adofuns.prg ) ?
Thanks
Maurizio