Search found 40 matches: sorts

Return to advanced search

Re: Question about performance RowSet

... information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely faster than the other libs. If we look back in the forums, we posted speed comparison with other libraries a ...
by Eroni
Wed Mar 20, 2024 1:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 3934

Re: Question about performance RowSet

... information which makes usage faster. First time reading is a bit slower when compared to other libraries. Once opened, updates, inserts, deletes, sorts, filters, etc. are all extremely faster than the other libs. If we look back in the forums, we posted speed comparison with other libraries a ...
by nageswaragunupudi
Sat Mar 16, 2024 10:20 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Question about performance RowSet
Replies: 19
Views: 3934

FW 23.07 Xbrowse, oCol:Cargo is NIL

I use oCol:Cargo to save some parameters.
Since FW 23.07 it does not work anymore, maybe due to:
LinkList: Method Sort( [lAsc], [lRecurse], [nCol] ) enhanced with
three new parameters.
Param.3 nCol: Default 0: Sorts on nCol of Cargo Array

How can I find a workaround?
Suggestions are welcome.
by frose
Sun Sep 10, 2023 8:01 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FW 23.07 Xbrowse, oCol:Cargo is NIL
Replies: 4
Views: 242

New FTDN July/Julio (FWH 23.07)

... Ascending sort Param.2 lRecurse: Default .f. for backward compatibility If set to .T. all subtrees are also sorted Param.3 nCol: Default 0: Sorts on nCol of Cargo Array * TreeItem: oItem[ n ] returns oItem:Cargo[ n ] if oItem:Cargo is an array and n is withing the size and if n is '0' returns ...
by Antonio Linares
Thu Jul 27, 2023 6:13 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN July/Julio (FWH 23.07)
Replies: 7
Views: 1060

Re: XBROWSE Column Question

... We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. WOW, that is nice :D When autosort flag is ON, XBrowse automatically sorts the data on click of header, using the value in oCol:cSortOrder. First click on the header sorts the data in ascending order. Second click on ...
by Jimmy
Wed May 10, 2023 6:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 865

Re: XBROWSE Column Question

... autosort feature. We can also use AUTOSORT clause in the XBROWSE command, which sets the flag. When autosort flag is ON, XBrowse automatically sorts the data on click of header, using the value in oCol:cSortOrder. First click on the header sorts the data in ascending order. Second click on ...
by nageswaragunupudi
Wed May 10, 2023 12:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: XBROWSE Column Question
Replies: 23
Views: 865

How does mod harbour work

... <?php and ?> which tell PHP to start and stop interpreting the code between them. Parsing in this manner allows PHP to be embedded in all sorts of different documents, as everything outside of a pair of opening and closing tags is ignored by the PHP parser. PHP includes a short echo tag ...
by Otto
Thu Jun 09, 2022 4:16 pm
 
Forum: mod_harbour
Topic: How does mod harbour work
Replies: 8
Views: 1177

Re: MariaDB

You do not have to read the RowSet again from the server at all. FWH library sorts the recordset in the memory itself. Just write this code: oRs:Sort := "r_social"// oroRs:Sort := "nome"// andoBrw:Refresh()  You can use either oRs:Sort ...
by nageswaragunupudi
Mon Feb 08, 2021 7:27 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: MariaDB (Solved)
Replies: 2
Views: 326

New FTDN May/Mayo 2019 (FWH 19.05)

... Now the existing fitlers are respected and incremental filter is treated as an additional filter. * New function AShuffle( aArray ) --> aArray Sorts a given array in a random order. * New function DBF_ApplyParams( cExpr, aParams ) --> cExpr Substitutes the '?' place holders in cExpr with ...
by Antonio Linares
Mon Jun 03, 2019 12:54 pm
 
Forum: WhatsNew / Novedades
Topic: New FTDN May/Mayo 2019 (FWH 19.05)
Replies: 4
Views: 3158

Re: FWH 18.08: Enhancements to strings.prg

... on startup. * * * HB_I18nSortTable( aTable ) --> aSorted * * FUNCTION YET UNTESTED. * * This function gets the two entry table in aTable and sorts it on * ascii ascending order of the first element, removing also duplicates * in the table. In other words, it transform a messy hil table in ...
by carlos vargas
Tue Nov 13, 2018 7:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWH 18.10: Enhancements to strings.prg
Replies: 19
Views: 5425

Re: UPPER() and IsAlpha() return not reals values in french

... sorting and indexing by (x)Harbour is correct and respects the rules of the language set by the codepage. It is NOT correct that (x)Harbour sorts alphabets by ASCI values. NO. It sorts the alphabets by the language collation rules. This is the sample to test sorting of French alphabets: ...
by nageswaragunupudi
Tue Jun 05, 2018 2:47 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: UPPER() and IsAlpha() return not reals values in french
Replies: 25
Views: 2493

New FTDN April/Abril 2018 (FWH 18.04)

... and moves the remaining text to the right. * New function FW_ArrGroupSum( aData, nGroupCol, [nTextCol], aSumCols, [lSummaryOnly] ) --> aData Sorts array on nGroupCol and totals each column in aSumCols. SubTotals for each value in nGroupCol value is inserted after the group. Grand totals are ...
by Antonio Linares
Mon Jun 04, 2018 6:34 am
 
Forum: WhatsNew / Novedades
Topic: New FTDN April/Abril 2018 (FWH 18.04)
Replies: 1
Views: 2159

Re: Autoincrement field for DBFCDX

... to a Sql table with the primary key being a "counter" ( auto-increment ) all it would take is a simple add() and update() to inject all sorts of mayhem into your tables. However, since you are creating your auto-increment ( primary key I presume 'UNIQUE' ) by code .. all it would take ...
by Rick Lipkin
Sat Mar 24, 2018 1:49 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Autoincrement field for DBFCDX
Replies: 9
Views: 1746

Re: error al eliminar con tdolphin y mysql

... by the clause. This is useful primarily in conjunction with LIMIT. For example, the following statement finds rows matching the WHERE clause, sorts them by timestamp_column, and deletes the first (oldest) one: DELETE FROM somelog WHERE user = 'jcole' ORDER BY timestamp_column LIMIT 1; ORDER ...
by joseluisysturiz
Sun Jan 14, 2018 6:16 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: error al eliminar con tdolphin y mysql
Replies: 4
Views: 1123

Re: FWHMARIADB Samples

... served by the server. Sorting Times and load on Server/network Now let us try clicking on headers of the 3 browses to test sorting speeds. ADO sorts fastest. While both ADO and FWH sorts in well less than one second, Dolphin takes 3 seconds, i.e., almost as much time as taken for reading the ...
by nageswaragunupudi
Sat Apr 22, 2017 3:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: FWHMARIADB Samples
Replies: 48
Views: 20521
Next

Return to advanced search