No logro actualizar datos si existe el registro
Hago lo siguiente:
- Code: Select all Expand view
FWCONNECT oCn HOST ViaServer USER "root" PASSWORD cPass DB "rrhh"
oCtrl:=oCn:RowSet( "SELECT * FROM control ORDER BY usuario" )
If oCtrl:Seek( cUser )
? "Found"
oCtrl:Update( "USUARIO,ENTRA", { cUser,Datetime()} )
Else
? "NoFound"
oCtrl:Append( "USUARIO,ENTRA", { cUser,Datetime()} )
Endif
Siempre me sale NoFound
Gracias por la ayuda