Search found 38 matches: comparisons

Searched query: comparisons

by RAMESHBABU
Sat Sep 14, 2024 2:58 am
Forum: FiveWin for Harbour/xHarbour
Topic: slowness
Replies: 76
Views: 20576

Re: slowness

... indexes on the server and started creating
in local system.
[/quote]


Do you also happen to have any speed tests?


Yes. I made several time comparisons to create new indexes or adding
additional tags in server Vs creating indexes every time in local system.

My results were always moved me to ...
by Maurizio
Thu Jul 18, 2024 6:55 am
Forum: FiveWin for Harbour/xHarbour
Topic: Dbf/cdx to sql changing
Replies: 53
Views: 9357

Re: Dbf/cdx to sql changing

Hello Otto
I don't want to get into the discussion of whether DBF or SQL is better as the gap is so wide that no comparisons can be made.
I can say that my small company would be dead now if I hadn't started using SQL 10 years ago.

Demonstrating the advantage of using an SQL database over DBF ...
by Carles
Mon Jun 17, 2024 6:28 pm
Forum: FiveWin for Harbour/xHarbour
Topic: DBF File Parsing with PHP - low-level file reading
Replies: 18
Views: 2476

Re: DBF File Parsing with PHP - low-level file reading

... next

AP_SetContentType( "application/json" )

?? hb_jsonEncode( aRows )

retu nil

I will set up some metrics for you to make comparisons between different systems, but to be as realistic as possible, we would have to do it on the same computer, whatever it may be. I'm telling you ...
by Otto
Tue Nov 21, 2023 1:07 pm
Forum: mod_harbour
Topic: Fivewin controls similar to javascript elements
Replies: 2
Views: 2854

Re: Fivewin controls similar to javascript elements

Thank you, Enrico, I just think it's important that as an HTML and JavaScript programmer
one makes comparisons, to understand what one is doing. Particularly,
I believe that EVENTHANDLERS are more universal, and in Fivewin,
by extensively using ::Super:, the possibilities in screen design can ...
by Antonio Linares
Tue May 02, 2023 7:08 am
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2023 (FWH 23.04)
Replies: 4
Views: 5625

New FTDN April/Abril 2023 (FWH 23.04)

... is +ve and desc if -ve.
If any element of the array is codeblock, the comarison is made
{ |x,y| Eval( b,x ) < Eval( b, y ) }
All string comparisons are case insensitive and values of
different datatypes are sorted on the type.

* New: function FW_GetClipboardData( [[@]Format] ) --> uData ...
by nageswaragunupudi
Sun Apr 16, 2023 12:47 pm
Forum: FiveWin for Harbour/xHarbour
Topic: sort Filename (Extension)
Replies: 6
Views: 594

Re: sort Filename (Extension)

PADR is not at all necessary.

Can try:
? ASort( { "CDX", "c", "Cpp", "cH" },,,;
{ |x,y| LOWER( X ) < LOWER( y ) } )


For case insensitive comparisons, we recommend using

FW_Stricmp( c1, c2 ) // --> -2, -1, 0, 1, 2


Incidentally, this function Data Type safe also.

The above function can be ...
by cnavarro
Sat Mar 12, 2022 11:16 am
Forum: FiveWin para Harbour/xHarbour
Topic: Su ayuda con este código
Replies: 9
Views: 776

Re: Su ayuda con este código

... TextTo" == "" )
This does not require changing SET EXACT.
Please note that setting SET EXACT ON will have global effect and somewhere some comparisons may give different results.

Dear Rao
Do you mean that what we have to do is induce our code to obtain the result that we expect and that it is ...
by nageswaragunupudi
Sat Mar 12, 2022 5:38 am
Forum: FiveWin para Harbour/xHarbour
Topic: Su ayuda con este código
Replies: 9
Views: 776

Re: Su ayuda con este código

Use
? !( "TextTo" == "" )
This does not require changing SET EXACT.
Please note that setting SET EXACT ON will have global effect and somewhere some comparisons may give different results.
by Otto
Fri Oct 08, 2021 6:20 am
Forum: FiveWin for Harbour/xHarbour
Topic: Number of Fields
Replies: 9
Views: 1482

Re: Number of Fields

... sample on small or medium-sized tables demonstrating this?

Especially for web pages, DBF files are easy to use.
Do you have experience with it? Comparisons? Demands on the server, server maintenance, flexibility when moving.

Security, since only a few people in the relationship use DBF files, they ...
by Otto
Tue Sep 07, 2021 6:19 am
Forum: mod_harbour
Topic: WYSIWYG Web Builder 16.4.3 started to support harbour syntax
Replies: 3
Views: 808

Re: WYSIWYG Web Builder 16.4.3 started to support harbour syntax

... friends here who just wait with their mod harbour start, it would be good if you could make some advantages
of the WYSIWYGbuilder and possibly comparisons with other editors ( Wordpress, WIX, bootstrap, jimdo, mdbootstrap, etc.).

How exactly does WYSIWYGbuilders support you?

Is that a two-way ...
by joseluisysturiz
Thu Feb 25, 2021 4:11 pm
Forum: FiveWin para Harbour/xHarbour
Topic: Sistema multi empresa con mysql
Replies: 16
Views: 3118

Re: Sistema multi empresa con mysql

... to be cumbersome connecting with different databases. I am not saying that it is not possible to connect to different databases and prepare comparisons. If the count of the number of company's increase in the future this is going to make things much harder for you.

If you keep a separate ...
by anserkk
Thu Feb 25, 2021 11:14 am
Forum: FiveWin para Harbour/xHarbour
Topic: Sistema multi empresa con mysql
Replies: 16
Views: 3118

Re: Sistema multi empresa con mysql

... to be cumbersome connecting with different databases. I am not saying that it is not possible to connect to different databases and prepare comparisons. If the count of the number of company's increase in the future this is going to make things much harder for you.

If you keep a separate ...
by damianodec
Fri Oct 18, 2019 1:06 pm
Forum: FiveWin for Harbour/xHarbour
Topic: help on string comparisons
Replies: 4
Views: 916

Re: help on string comparisons

Hi Antonino
Database is BD2 on iSeries IBM and field CODICE is CHAR(15) (not VARCHAR) but when recordset read table chars are trimmed:
Field CHAR(15) in DBU = "123456abc "
field read = "123456abc".
by AntoninoP
Fri Oct 18, 2019 10:38 am
Forum: FiveWin for Harbour/xHarbour
Topic: help on string comparisons
Replies: 4
Views: 916

Re: help on string comparisons

which database are you using? the column is char(15) or varchar(15)?
On our application on SQL Server we have all column "char" and the spaces are not trimmed.
they are trimmed with varchar
by damianodec
Fri Oct 18, 2019 9:13 am
Forum: FiveWin for Harbour/xHarbour
Topic: help on string comparisons
Replies: 4
Views: 916

Re: help on string comparisons

hi Marc, thank you, that's good solution.
But is SET EXACT ON a good solution too?

why CHAR fields in recordest lose right blanks ?