FiveTech Support Forums

FiveWin / Harbour / xBase community
Board index FiveWin for Pocket PC Problem with dbdelete() and pack
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM
Problem with dbdelete() and pack
Posted: Wed Oct 12, 2005 09:36 AM

I use DBFCDX RDD
the command dbdelete() and pack
don't work correctly

Regards Maurizio

Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Re: Problem with dbdelete() and pack
Posted: Fri Oct 14, 2005 08:02 PM
Maurizio wrote:I use DBFCDX RDD
the command dbdelete() and pack
don't work correctly

Regards Maurizio


Maurizio

Do you have

SET DELETE ON

Richard
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 155
Joined: Tue Dec 30, 2008 03:07 AM
PACK and ZAP in real pocket pc
Posted: Sat Oct 15, 2005 10:11 PM

We have same problem, only in real pocket pc.

In PC with harbour or xharbour work ok. Also in emulator is ok.

PACK and ZAP not delete records, only mark it except the first record that recall delete.

We do not use index.

And we use SET DELETED ON

If PACK is not used all records mark deleted correctly.

USE FALLIN
GO TOP
DO WHILE .not. Eof()
DELETE
SKIP 1
ENDDO
PACK
CLOSE

USE FALLIN
GO TOP
IF .not. Eof()
MsgInfo("Hay Datos","Atencion")
ENDIF
CLOSE

Regards

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Problem with dbdelete() and pack
Posted: Sat Oct 15, 2005 11:56 PM

Daniel,

Yes, it is working ok on the emulator but it isn't on the pocket pc. Very strange. They should work the same.

Do other FWPPC users have noticed the same ? Any workaround ?

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Problem with dbdelete() and pack
Posted: Sun Oct 16, 2005 12:08 AM

A first idea to use as a workaround it may be to create a temporary DBF and copy the non deleted record only to it.

Then remove the first DBF file, and rename the temporary as the good one.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 842
Joined: Mon Oct 10, 2005 01:29 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 07:07 AM

I try on Windows CE.NET and on pocket pc
with the same problems
Maurizio

Posts: 2
Joined: Mon Oct 10, 2005 07:56 AM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 12:23 PM

I think that problem is dbf path.
I have oher problems' with this...
but not with emulator.... :(
Use path for open dbf...

My two cents
regard's
andrea bruni

Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 01:02 PM
andreab wrote:I think that problem is dbf path.
I have oher problems' with this...
but not with emulator.... :-)
Use path for open dbf...

My two cents
regard's
andrea bruni


It is not the path but probably the header of the dbf for the first record.

Antonio, i tried the test.prg that you have in samples dir and tried to open the dbf file (after program execution) on my laptop pc. My dbf editor (cdbfw) did not want to open it mentionning dbf header is not correct. Once corrected, it shows that 2nd and third are deleted.

Richard
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 01:11 PM
Richard Chidiak wrote:
andreab wrote:I think that problem is dbf path.
I have oher problems' with this...
but not with emulator.... :-)
Use path for open dbf...

My two cents
regard's
andrea bruni


It is not the path but probably the header of the dbf for the first record.

Antonio, i tried the test.prg that you have in samples dir and tried to open the dbf file (after program execution) on my laptop pc. My dbf editor (cdbfw) did not want to open it mentionning dbf header is not correct. Once corrected, it shows that 2nd and third are deleted.

Richard


Forgot to say, execution did occur on pocket pc and file was copied to laptop afterwards
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 01:41 PM

Richard,

I have tested it on the emulator and works ok. Then I modified the DBF path (SD card) and tested it again on the real pocket pc and the problem then happens.

I guess we need to create a zapDbf() function that does what I described on a previous msg. Also we could try COPY TO ... FOR ... command too.

regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 02:40 PM
Antonio Linares wrote:Richard,

I have tested it on the emulator and works ok. Then I modified the DBF path (SD card) and tested it again on the real pocket pc and the problem then happens.

I guess we need to create a zapDbf() function that does what I described on a previous msg. Also we could try COPY TO ... FOR ... command too.


Antonio

I tried COPY TO on pocket pc

Only one record (the first one) is copied ??? none should be there

Again the header of the original file where we delete is corrupted.

Richard
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 04:39 PM
Richard Chidiak wrote:Only one record (the first one) is copied ??? none should be there

Have you checked if that record is marked as deleted ?

Richard Chidiak wrote:Again the header of the original file where we delete is corrupted.


How do you know this ? Do you get an error when you try to open it ? What tool are you using to open it ? Thanks.
regards, saludos

Antonio Linares
www.fivetechsoft.com
Posts: 946
Joined: Thu Oct 06, 2005 07:05 PM
Problem with dbdelete() and pack
Posted: Mon Oct 17, 2005 05:49 PM
Antonio Linares wrote:
Richard Chidiak wrote:Only one record (the first one) is copied ??? none should be there

Have you checked if that record is marked as deleted ?

Richard Chidiak wrote:Again the header of the original file where we delete is corrupted.


How do you know this ? Do you get an error when you try to open it ? What tool are you using to open it ? Thanks.


Antonio,

The only record left (first one) is "not" quoted as DELETED

After execution on my pocket pc, i remove the sd card and put it on a sd card reader connected to my computer, then i can open the file on my laptop.

I use cdbfw for browsing any dbf, this product is just magic, and cdbfw informs me that the header is corrupted.

Richard
http://www.cbati.com

Uestudio
Fwh 13.05 Harbour 3.2 MSVC 2013
Posts: 6983
Joined: Fri Oct 07, 2005 07:07 PM
Re: Problem with dbdelete() and pack
Posted: Mon Apr 06, 2009 07:45 AM

Hello,
What is the status on ZAP and PACK.
Is ZAP and PACK working now?
Thanks in advance
Otto

Posts: 44158
Joined: Thu Oct 06, 2005 05:47 PM
Re: Problem with dbdelete() and pack
Posted: Mon Apr 06, 2009 10:36 AM

Otto,

As we are using a recent Harbour build with FWPPC, those RDD functions should be working fine.

regards, saludos

Antonio Linares
www.fivetechsoft.com

Continue the discussion