... to the RowSet()
oRs:CancelBatch()
Batch mode continues till we reset.
oRs:SetBatchMode( .f. )
IMPORTANT CAUTION:
Even in lBatchMode, METHOD Zap() really Zaps the table in the database.
Please do not use it.
So for your requirements use BatchMode
oRs := oCn:RowSet( ........... )
oRs ...
Search found 9 matches: zap
Searched query: zap
- Fri Nov 22, 2024 12:02 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Soporte a mariaConnect ?
- Replies: 11
- Views: 1808
- Tue Nov 19, 2024 8:08 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Soporte a mariaConnect ?
- Replies: 11
- Views: 1808
Re: Soporte a mariaConnect ?
... en sistemas sql : requestApi,,, donde estos objetos en memoria los manipulamos, y ya en otra lógica afectamos a la base de datos...
Ejp : ojeto:zap()... se elimina la tabla... en la logica... un zap sobre datos reales, es un caso muy especial y de mucho control... pero un zap sobre temporales si ...
Ejp : ojeto:zap()... se elimina la tabla... en la logica... un zap sobre datos reales, es un caso muy especial y de mucho control... pero un zap sobre temporales si ...
- Tue Nov 19, 2024 5:18 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Soporte a mariaConnect ?
- Replies: 11
- Views: 1808
Soporte a mariaConnect ?
... oRs:Append( { "name", "salary" }, { "Anderson", 30000 } )
METHOD Update( aFields, aValues ) --> lSuccess
METHOD Delete() --> lSuccess
METHOD Zap()
no afecten a la base de datos.. que solo solo afecten al recordSet---
La idea es usar bien sea un objeto TArrayData() o RowSet() para migrar de ...
METHOD Update( aFields, aValues ) --> lSuccess
METHOD Delete() --> lSuccess
METHOD Zap()
no afecten a la base de datos.. que solo solo afecten al recordSet---
La idea es usar bien sea un objeto TArrayData() o RowSet() para migrar de ...
- Tue Jun 25, 2024 3:51 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF editors
- Replies: 78
- Views: 11004
Re: DBF editors
... always use 2 DBF editors: the one by Enrico and the one by Franklin.
Enrico's for quick lookup and browsing and for changing the structure, ZAP, PACK. It runs rock solid. Unfortunately, some functions are missing, like statistics, replace, etc.
Please elaborate: which functions are missing ...
Enrico's for quick lookup and browsing and for changing the structure, ZAP, PACK. It runs rock solid. Unfortunately, some functions are missing, like statistics, replace, etc.
Please elaborate: which functions are missing ...
- Tue Jun 25, 2024 1:42 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF editors
- Replies: 78
- Views: 11004
Re: DBF editors
... always use 2 DBF editors: the one by Enrico and the one by Franklin.
Enrico's for quick lookup and browsing and for changing the structure, ZAP, PACK. It runs rock solid. Unfortunately, some functions are missing, like statistics, replace, etc.
Since structure changes didn't start at all in ...
Enrico's for quick lookup and browsing and for changing the structure, ZAP, PACK. It runs rock solid. Unfortunately, some functions are missing, like statistics, replace, etc.
Since structure changes didn't start at all in ...
- Tue Jun 25, 2024 11:27 am
- Forum: FiveWin for Harbour/xHarbour
- Topic: DBF editors
- Replies: 78
- Views: 11004
Re: DBF editors
... always use 2 DBF editors: the one by Enrico and the one by Franklin.
Enrico's for quick lookup and browsing and for changing the structure, ZAP, PACK. It runs rock solid. Unfortunately, some functions are missing, like statistics, replace, etc.
Since structure changes didn't start at all in ...
Enrico's for quick lookup and browsing and for changing the structure, ZAP, PACK. It runs rock solid. Unfortunately, some functions are missing, like statistics, replace, etc.
Since structure changes didn't start at all in ...
- Fri Sep 15, 2023 11:05 pm
- Forum: FiveWin for Harbour/xHarbour
- Topic: Reason for closing DBF file
- Replies: 23
- Views: 2285
Re: Reason for closing DBF file
... COMUNES\logrdd.prg(404) Error E0059 Invalid SWITCH Constant 'DELETE'.
FUENTES\COMUNES\logrdd.prg(407) Error E0059 Invalid SWITCH Constant 'RECALL'.
FUENTES\COMUNES\logrdd.prg(410) Error E0059 Invalid SWITCH Constant 'PUTVALUE'.
FUENTES\COMUNES\logrdd.prg(414) Error E0059 Invalid SWITCH Constant 'ZAP'.
FUENTES\COMUNES\logrdd.prg(407) Error E0059 Invalid SWITCH Constant 'RECALL'.
FUENTES\COMUNES\logrdd.prg(410) Error E0059 Invalid SWITCH Constant 'PUTVALUE'.
FUENTES\COMUNES\logrdd.prg(414) Error E0059 Invalid SWITCH Constant 'ZAP'.
- Sun Feb 12, 2023 4:38 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Reitero consulta para actualizar un campo con XBrowse
- Replies: 6
- Views: 816
Re: Reitero consulta para actualizar un campo con XBrowse
... ProvFor index ProvFor1, ProvFor2 new
use ArtFor index ArtFor1, ArtFor2, ArtFor3, ArtFor4, ArtFor5 new
use _ArtFor index _ArtFor1, _ArtFor2 new
zap
select ArtFor
ArtFor->(DbGoTop())
While !ArtFor->(Eof())
select _ArtFor
_ArtFor->(DbAppend())
_ArtFor->Articulo := ArtFor->Articulo
_ArtFor ...
use ArtFor index ArtFor1, ArtFor2, ArtFor3, ArtFor4, ArtFor5 new
use _ArtFor index _ArtFor1, _ArtFor2 new
zap
select ArtFor
ArtFor->(DbGoTop())
While !ArtFor->(Eof())
select _ArtFor
_ArtFor->(DbAppend())
_ArtFor->Articulo := ArtFor->Articulo
_ArtFor ...
- Mon Dec 19, 2022 4:17 pm
- Forum: FiveWin para Harbour/xHarbour
- Topic: Lectura dbf exclusiva
- Replies: 6
- Views: 634
Re: Lectura dbf exclusiva
... pregunta ¿ Cual es el motivo por el que el otro proceso tiene el archivo abierto en exclusividad ?
Ejemplo:
USE BANCO EXCLUSIVE NEW
INDEX ON..
ZAP
APPEND FROM..
etc
Lea el manual de Clipper, Harbour o xHarbour, por favor.
https://vivaclipper.wordpress.com/2014/02/17/use/
Regards, saludos.
Ejemplo:
USE BANCO EXCLUSIVE NEW
INDEX ON..
ZAP
APPEND FROM..
etc
Lea el manual de Clipper, Harbour o xHarbour, por favor.
https://vivaclipper.wordpress.com/2014/02/17/use/
Regards, saludos.