Page 1 of 1

HMG vs. Clipper 5.2 speed

Posted: Wed Jan 27, 2010 12:24 pm
by mol
I finished porting my old application written in clipper 5.2

I'm amazing about speed of HMG. It's especially evident when I run it from pendrive.

I am impressed!

Re: HMG vs. Clipper 5.2 speed

Posted: Wed Jan 27, 2010 1:06 pm
by Rathinagiri
Thanks for sharing the experience. I am also glad.

Re: HMG vs. Clipper 5.2 speed

Posted: Wed Jan 27, 2010 1:55 pm
by sudip
Hello Marek,

Thanks a lot for this very interesting topic :-)

Yes, HMG is many times faster. I didn't "convert" any old Clipper app to HMG. But, I converted many old Clipper apps to xHarbour+gtwvw and Harbour+gtwvg. I found amazing improvement of speed in both cases :o , especially with Harbour it's excellent.

I made some add-on projects for my old Clipper and VFP ( ;) ) apps. In both cases I found improvement of speed. I was really surprised when found my HMG add on is faster than VFP!!! :o :D

With best regards.

Sudip

Re: HMG vs. Clipper 5.2 speed

Posted: Wed Jan 27, 2010 2:25 pm
by Vanguarda
Hi friends,

Thanks Mol for sharing this experience with us. It is very interresant

My best regards,

Re: HMG vs. Clipper 5.2 speed

Posted: Wed Jan 27, 2010 10:09 pm
by Roberto Lopez
sudip wrote: <...>
HMG add on is faster than VFP!!! :o :D
That is not rare... the last years, VFP become a little fat and slow :)

Re: HMG vs. Clipper 5.2 speed

Posted: Wed Dec 01, 2010 9:50 am
by nguyenchiduc
sudip wrote:Hello Marek,

Thanks a lot for this very interesting topic :-)

Yes, HMG is many times faster. I didn't "convert" any old Clipper app to HMG. But, I converted many old Clipper apps to xHarbour+gtwvw and Harbour+gtwvg. I found amazing improvement of speed in both cases :o , especially with Harbour it's excellent.

I made some add-on projects for my old Clipper and VFP ( ;) ) apps. In both cases I found improvement of speed. I was really surprised when found my HMG add on is faster than VFP!!! :o :D

With best regards.

Sudip
I test with a file. Dbf to over 2.200.000 records and about 990M of size.

LOCATE command of HMG and FVP are equivalent. HMG slightly faster

VFP very slow compared to HMG in example

Code: Select all

use data alias data  shared new readonly via "DBFCDX"

DO WHILE .NOT. EOF()

    IF data->user == "ABC"
         /* commands */
         exit
    ELSE
       skip
    ENDIF
ENDDO
EDIT or EDIT EXTEND command in HMG very bad compared to the BROWSE in VFP with large files

====================================

During calculation, the intermediate results show up window can display the error. Although the program still run. This affects only the display but not the program crashes

Re: HMG vs. Clipper 5.2 speed

Posted: Thu Dec 02, 2010 1:58 pm
by sudip
Hi All,

Very recently I was creating some reports with DBF (you may call it as "add on" project) for my old VFP app (writtein with VfP6, which has problems with Win7).

I couldn't check the exact time. But, as per my observation.
1. VFP's (VFP 6) embedded SQL is very fast.
2. HMG app is more flexible and robust.
3. Exporting data to Excel (OLE) is faster with HMG :)

I was also testing very small project with VB.Net 2010 Express Edition with a small table. User interface is outstanding, but it's very slow.