Search found 235 matches: bof

Return to advanced search

Re: Soporte a mariaConnect ?

... y rowSet... tienen metodos de navegacion y ordenaminento,,,, Navigation: Supports all methods of TDatabase like GoTop,GoBottom,GoTo,Skip,Eof,Bof,LastRec, RecCount,KeyCount,KeyGoTo, etc Also supports aliased methods compatible with ADO MoveFirst,MoveLast,Move,BookMark,AbsolutePosition, etc ...
by russimicro
Wed Nov 20, 2024 11:50 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Soporte a mariaConnect ?
Replies: 11
Views: 1213

Re: Ayuda con DLL

... oDbf1:bEoF=nil oDbf1:bBoF=nil oDbf1:GoTop() USE VENTAS44 NEW DATABASE oDbf2 oDbf2:bEoF=nil oDbf2:bBoF=nil oDbf2:GoBottom() Q:=1 DO WHILE !oDbf2:Bof() .AND. Q<=10 IF oDbf2:PRODUCTO>0 NroVta[Q]:=oDbf2:NUMEROVTA FecVta[Q]:=oDbf2:FECHA HorVta[Q]:=oDbf2:HORA SurVta[Q]:=TRAN(oDbf2:SURTIDOR,"##")+" ...
by Jorge Jaurena
Tue Jun 04, 2024 2:18 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Ayuda con DLL
Replies: 8
Views: 675

Re: Mr. Rao EOF() BOF() not working wirh RecSet

You are right. With RecSet, eof() and bof() do not work. We will try to provide this in future versions. for now you can use this: nRecs := oData:RecCount()nSave := oData:RecNo()do while oData:RecNo() <= nRecs   // ...
by nageswaragunupudi
Fri Feb 02, 2024 8:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao EOF() BOF() not working wirh RecSet
Replies: 3
Views: 624

Re: Mr. Rao EOF() BOF() not working wirh RecSet

What about calling oData:MoveFirst() before starting the Do while Loop ?
by anserkk
Fri Feb 02, 2024 4:24 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao EOF() BOF() not working wirh RecSet
Replies: 3
Views: 624

Mr. Rao EOF() BOF() not working wirh RecSet

Mr Rao You can help me please , I use RecSet, but not work correctly, EOF() and BOF() not workink with RecSet, see you this example: I used MaeiaDb Function ListaUser(oCn)local lOK, cData, oData, aRet := {}lOk := .t.cData := "SELECT nick FROM ...
by Willi Quintana
Thu Feb 01, 2024 11:42 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Mr. Rao EOF() BOF() not working wirh RecSet
Replies: 3
Views: 624

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 6 TOLEAUTO ...
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: 294544

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 6 TOLEAUTO ...
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: 1731

Re: Problem with xBrowse

...  Called from:  => TOLEAUTO:VALUE( 0 )  1007 group of errors occur when accessing a recordset is closed or eof/bof is true or record is deleted. Please check if any situation exists
by nageswaragunupudi
Sun May 28, 2023 1:59 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Problem with xBrowse (Fixed)
Replies: 34
Views: 4185

Re: XBrowse con xBase - Efecto Pijama - Error en Red

... n == nil,; ( ::cAlias )->( OrdKeyNo() ),; ( ::cAlias )->( OrdKeyGoto( n ); ) ) },; ::bKeyCount := {|| ( ::cAlias )->( If( eof() .and. bof(), 0, OrdKeyCount() ) ) } Endif :::::: ¿Puede alguien por favor decirme si causará algún error dejarlas comentadas? ¿o cual sería la solución correcta? ...
by José
Tue Mar 21, 2023 2:41 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: XBrowse con xBase - Efecto Pijama - Error en Red
Replies: 3
Views: 518

Re: Procedimiento almacenado adolib

... _Fe1_:=20220101 _Fe2_:=20220131 Connect_sql(@_Cnx_,'Usuario','Clave') Get_sql_detalle(_Cnx_,@_Rds_,_Fe1_,_Fe2_) Do While !_Rds_:Bof() .And. !_Rds_:Eof() _Imp_:=_Rds_:Fields('Precio'):Value _Tpr_:=_Rds_:Fields('Tipo'):Value _Obs_:=_Rds_:Fields('Observa'):Value Aadd(Arayx,{_Rds_:Fields('Documento'):Value, ...
by jacgsoft
Mon Oct 03, 2022 9:56 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: Procedimiento almacenado adolib
Replies: 1
Views: 443

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

... not know. Now, let us make this work. Please let me know: What are the methods to 1. GoTop (eg: oTb:GoTop() ) 2. GoBottom 3. GoTo( nthRecord ) 4. Bof() 5. Eof() How do we access and assign field values? Is it similar to other classes like x := oTb:fieldname oTb:fieldname := x ? Thanks Mr Rao 1.- ...
by Compuin
Wed Feb 23, 2022 5:33 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse command not working properly -- MR. RAO
Replies: 21
Views: 2198

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

... not know. Now, let us make this work. Please let me know: What are the methods to 1. GoTop (eg: oTb:GoTop() ) 2. GoBottom 3. GoTo( nthRecord ) 4. Bof() 5. Eof() How do we access and assign field values? Is it similar to other classes like x := oTb:fieldname oTb:fieldname := x ?
by nageswaragunupudi
Wed Feb 23, 2022 12:09 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: xbrowse command not working properly -- MR. RAO
Replies: 21
Views: 2198

Re: Error in database.prg?

... DBF DBFFPT DBFBLOB DBFCDX DBFNTX DataBases in use ================ 1: ARQRAM RddName: DBFCDX ============================== RecNo RecCount BOF EOF 6 5 .F. .T. Indexes in use TagName => DESCRICAO DESCRICAO Relations in use 2: CONFCTE RddName: DBFCDX ============================== RecNo ...
by wartiaga
Tue Feb 15, 2022 4:55 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: Can you use a field named End with Class TDataBase ? yes!
Replies: 15
Views: 1913
Next

Return to advanced search