Search found 332 matches: reccount

Return to advanced search

Re: Count xbrowse records

... records in a DBF which are not deleted. There is no simple function for this. Does not matter whether SET DELETED is ON or OFF: Both LASTREC() and RECCOUNT() include deleted records also. ORDKEYCOUNT() also does not exclude deleted records by itself, but honors filters, scopes and index expressions. ...
by wartiaga
Fri Feb 23, 2024 4:39 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 215

Re: Count xbrowse records

... records in a DBF which are not deleted. There is no simple function for this. Does not matter whether SET DELETED is ON or OFF: Both LASTREC() and RECCOUNT() include deleted records also. ORDKEYCOUNT() also does not exclude deleted records by itself, but honors filters, scopes and index expressions. ...
by Silvio.Falconi
Fri Feb 23, 2024 1:26 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 215

Re: Count xbrowse records

... records in a DBF which are not deleted. There is no simple function for this. Does not matter whether SET DELETED is ON or OFF: Both LASTREC() and RECCOUNT() include deleted records also. ORDKEYCOUNT() also does not exclude deleted records by itself, but honors filters, scopes and index expressions. ...
by nageswaragunupudi
Fri Feb 23, 2024 4:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Count xbrowse records
Replies: 5
Views: 215

Re: RAO advice on using Mysql

METHODS: RecCount(), LastRec(), KeyCount(),RecNo(), KeyNo() GoTop(),GoBottom(),GoTo(nRec),KeyGoTo(nKey),Skip(n) FCount(),FieldPos(c),FieldName(),FieldLen(),FieldDec(),FieldType() FieldGet(),FieldPut() SetOrder(cSort,,lDescend) ...
by nageswaragunupudi
Fri Feb 02, 2024 12:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: RAO advice on using Mysql
Replies: 12
Views: 856

Re: 1st FWH + [x]Harbour 2017 international conference

... =========== DBF DBFFPT DBFBLOB DBFCDX DBFNTX DataBases in use ================ 1: => EMP RddName: DBFNTX ============================== RecNo RecCount BOF EOF 1 1 .F. .F. Indexes in use TagName Relations in use Classes in use: =============== 1 ERROR 2 HBCLASS 3 HBOBJECT 4 TFONT 5 WIN_OLEAUTO ...
by sirotoca
Wed Nov 15, 2023 9:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: 1st FWH + [x]Harbour 2017 international conference
Replies: 68
Views: 252659

Re: Xbrowse : oBrw:ToArray (How to do it)

... =========== DBF DBFFPT DBFBLOB DBFCDX DBFNTX DataBases in use ================ 1: => EMP RddName: DBFNTX ============================== RecNo RecCount BOF EOF 1 1 .F. .F. Indexes in use TagName Relations in use Classes in use: =============== 1 ERROR 2 HBCLASS 3 HBOBJECT 4 TFONT 5 WIN_OLEAUTO ...
by sirotoca
Wed Nov 15, 2023 8:40 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Xbrowse : oBrw:ToArray (How to do it)
Replies: 13
Views: 809

Re: Lost connection to MySQL server during query

... nil.AND.MEMVAR->NTIMER>0 WaitOn(cTitulo,@oWait) SysRefresh() oQry:=MEMVAR->oConex:Query("SELECT 1") WaitOff(@oWait) IF oQry:RecCount()==0 MsgWait("Reconectando con el servidor...",cTitulo,3) lRta:=MEMVAR->oConex:Ping() IF !lRta MsgWait("Se desconecto el ...
by cjcardoza
Sat Aug 05, 2023 3:21 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Lost connection to MySQL server during query
Replies: 37
Views: 11992

Re: Clase database y ordScope

Estimado Horacio,

Has probado con oDataBase:RecCount() ?
by Antonio Linares
Sat Jan 14, 2023 6:32 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Clase database y ordScope
Replies: 5
Views: 468

Problem with tmeter

... oStorico:FW_ArrayToDbf( anew,,bprogress ) nothing happens the meter is stopped at 0% for procedure 2 local nPos := 1 nTotaleStorico:=oStorico:RecCount() nMeter:=0 oProgress:set(nMeter) oProgress:ntotal:= len(nTotaleStorico) //this make me error Do while .not. oStorico:eof() ..... oStorico:skip() ...
by Silvio.Falconi
Mon Nov 14, 2022 10:05 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with tmeter
Replies: 3
Views: 295

Re: ayuda con FWMariadb y fastreport

Hola Jose, yo lo hago asi y me funciona perfecto El equivalente es oRs:RecCount() STATIC function Freporte( oRs )   LOCAL oFr   oFr := frReportManager():New()   oFr:LoadLangRes( "Spanish.xml" )   oFr:SetUserDataSet( ...
by Compuin
Thu May 19, 2022 2:30 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: ayuda con FWMariadb y fastreport (Resuelto)
Replies: 4
Views: 386

Re: reccount en mariadb

Code: Select all  Expand view
oRs:RecordCount()
oRs:RecCount()
oRs:LastRec()


--> Total number of records

When a filter is applied:
Code: Select all  Expand view
oRs:KeyCount()

Number of filtered records
by nageswaragunupudi
Mon Apr 25, 2022 12:24 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: reccount en mariadb
Replies: 2
Views: 198

Re: reccount en mariadb

Soluciuonado:

Code: Select all  Expand view
oRs:RecordCount() != 0
by goosfancito
Mon Apr 25, 2022 9:07 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: reccount en mariadb
Replies: 2
Views: 198

reccount en mariadb

Buen dia. Necesito saber si esta consulta devuelve datos, si lo hago de la forma que lo hacia hasta ahora siempre me dice que devuelve pero no hay datos realmente.    oQryLocal := ::oCnx:QUERY( AUXILIAR_ARBOL, { ::nIdcarpeta, ::nIdDanteCausa } )   IF ( Len&#...
by goosfancito
Mon Apr 25, 2022 9:02 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: reccount en mariadb
Replies: 2
Views: 198

Help for scrollBar - Resolved -

I wish use scrollbar on a dialog @ nRow, ncol SCROLLBAR oScrollInizio HORIZONTAL SIZE 400,20 PIXEL OF oDlg ; RANGE 1,reccount() ; ON DOWN ( dbSkip(),; If( EoF(), dbGoBottom(),) ); ON UP ( dbSkip( -1 ) ) this run ok but the thmbpos is not stuck where it should be How I can set the ...
by Silvio.Falconi
Sun Apr 17, 2022 10:43 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Help for scrollBar - Resolved -
Replies: 10
Views: 530

Re: xbrowse command not working properly -- MR. RAO

Can I also assume that: 1. oTb:RecCount() --> number of rows? 2. oTb:RecNo() --> current row/record number? 3. oTb:GoTo( n ) --> Moves the record pointer to nth row? 4. oTb:Skip( +n or -n ) --> skips the record pointer by n or ...
by Compuin
Wed Feb 23, 2022 6:28 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse command not working properly -- MR. RAO
Replies: 21
Views: 1378
Next

Return to advanced search