Search found 272 matches: dbusearea

Return to advanced search

Re: FWH 24.02 y Harbour con BCC7.7 y Select()

Pues yo me inclino porque es un problema del preprocesado.
Habria que ver el archivo .ppo generado a ver si está convirtiendo Select() en una cosa inesperada
Recordar tambien que el comando SELECT es traducido a dbUseArea([x])
by paquitohm
Tue Mar 05, 2024 9:28 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: FWH 24.02 y Harbour con BCC7.7 y Select()
Replies: 19
Views: 3602

Re: come recuperare il codice fivewin da .c file

... SELECT */ HB_P_PUSHNIL, HB_P_FUNCTIONSHORT, 0, HB_P_POPVARIABLE, 2, 0, /* CD */ /* 00034 */ HB_P_LINEOFFSET, 2, /* 140 */ HB_P_PUSHSYMNEAR, 3, /* DBUSEAREA */ HB_P_PUSHNIL, HB_P_TRUE, HB_P_PUSHNIL, HB_P_PUSHLOCALNEAR, 1, /* NOME */ HB_P_PUSHNIL, HB_P_PUSHNIL, HB_P_FALSE, HB_P_PUSHNIL, HB_P_DOSHORT, ...
by Antonio Linares
Mon Feb 12, 2024 9:55 pm
 
Forum: All products support
Topic: come recuperare il codice fivewin da .c file
Replies: 7
Views: 453

Re: LETODB - ABRIR o CONSULTAR BASES REMOTAS SHARED

... la cosa para abrirlos en modo compartido. cambiando esta linea, las abre en modo compartido (no se que otras consecuencias puede tener...)" dbUseArea( .F.,Iif(nDriver==1,"DBFNTX",Nil),oApp:DataPath+cName,cRealAlias,.T.,.F.,Iif(!Empty(cdp),cdp,Nil) ) Alguien ha realizado este cambio ...
by mterraz
Tue Jan 02, 2024 1:47 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LETODB - ABRIR o CONSULTAR BASES REMOTAS SHARED
Replies: 3
Views: 372

LETODB - ABRIR o CONSULTAR BASES REMOTAS SHARED

... la misma consulta sobre otras bases de datos que están en el mismo directorio remoto funciona sin inconvenientes. EJEMPLO DE APERTURA DE BASES Dbusearea(.t.,"LETO",cServer+'/wflabor','ProduNew',.T.,.F.) FUNCIONA xbrowse() USE ( '//190.108.228.106:2812/wflabor' ) New FUNCIONA xbrowse() ...
by mterraz
Thu Dec 28, 2023 4:00 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: LETODB - ABRIR o CONSULTAR BASES REMOTAS SHARED
Replies: 3
Views: 372

Re: Reason for closing DBF file

cDriVer := "DBFCDX" // PARAMETRO DE LA FUNCION DBUSEAREA(.T.,cDriVer,cPatTab+cNomTab,cAliTab,lShared,lReaOnl) IF ( cDriVer == "DBFCDX" .OR. cDriVer == "ADS" ) .AND. !EMPTY(cPatTab) cNomArc := ALLTRIM(SUBS(cNomTab,1,8))+'.CDX' ...
by russimicro
Sun Sep 24, 2023 10:39 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: Reason for closing DBF file
Replies: 23
Views: 1154

Re: Incluyendo el SQLRDD

... Deleted() status. By default, the SQLRDD adopts the name SR_DELETED. If you want to use another name, call SR_DeletedName("NAME") before dbUseArea() or dbCreate(). This function is also very useful when we want to open tables not created by SQLRDD, but we can use another not null character ...
by carlos vargas
Fri Aug 25, 2023 1:34 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2539

Re: Incluyendo el SQLRDD

... manages the Recno(). By default, the SQLRDD adopts the name SR_RECNO. If you want to use another name, call SR_RecnoName("NAME") before dbUseArea() or dbCreate(). This function is also very useful when we want to open tables not created by SQLRDD, but we can use another auto sequenced ...
by carlos vargas
Fri Aug 25, 2023 1:33 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2539

Re: Incluyendo el SQLRDD

... como he mencionado anteriormente, por lo que no fallará USE cTable VIA SQLRDD Si no se desea modificar la estructura, siempre se puede utilizar dbUseArea( .F., "SQLRDD", "select * from customer", "customer" ) En conclusión, si se pretende migrar todo un sistema ...
by Joaquim Ferrer
Thu Aug 24, 2023 11:42 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2539

Re: problem with dbUseArea

Hi Last comma makes an blank line to array, and than aIdx(i,1) is empty for dbusearea where i=2 -works correct for i=1 but len(aIdx)=2 and then crash! ::aIdx := { ; { "CUSTOMER" , { { "Upper(First)" , "First" , "Customer" ...
by Silvio.Falconi
Mon Apr 17, 2023 8:43 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764

Re: problem with dbUseArea

Hi Last comma makes an blank line to array, and than aIdx(i,1) is empty for dbusearea where i=2 -works correct for i=1 but len(aIdx)=2 and then crash! ::aIdx := { ; { "CUSTOMER" , { { "Upper(First)" , "First" , "Customer" ...
by alerchster
Sun Apr 16, 2023 5:08 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764

Re: problem with dbUseArea

thanks , where was the error ?
by Silvio.Falconi
Sun Apr 16, 2023 2:42 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764

Re: problem with dbUseArea

... || " + cfor + "}"   ::oBtnOk:Disable()   ::oBtnExit:Disable()//   xbrowser ::aIdx   FOR i := 1 TO LEN( ::aIdx )      //dbUseArea( .t., ::cDriver, ::cFile, ::cAlias, ::lShared, ::lReadOnly )      DbUseArea( .F. ,"DBFCDX", ::aIdx[ i, 1 ],, .F. )      FOR k := ...
by alerchster
Sat Apr 15, 2023 5:23 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764

Re: problem with dbUseArea

... ::aIdx   FOR i := 1 TO LEN( ::aIdx )-1                                                                                 // NEW is -1      //dbUseArea( .t., ::cDriver, ::cFile, ::cAlias, ::lShared, ::lReadOnly )      DbUseArea( .F. ,"DBFCDX", ::aIdx[ i, 1 ],, .F. )      FOR k := ...
by alerchster
Fri Apr 14, 2023 2:37 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764

Re: problem with dbUseArea

Jimmy wrote:hi Silvio,

have you try a Macro ?
Code: Select all  Expand view
  xName := ::aIdx[ i, 1 ]
   DbUseArea( .F. ,"DBFCDX", &(xName),, .F. )

error
by Silvio.Falconi
Fri Apr 14, 2023 12:57 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764

Re: problem with dbUseArea

hi Silvio,

have you try a Macro ?
Code: Select all  Expand view
  xName := ::aIdx[ i, 1 ]
   DbUseArea( .F. ,"DBFCDX", &(xName),, .F. )
by Jimmy
Fri Apr 14, 2023 12:04 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: problem with dbUseArea - resolved -
Replies: 10
Views: 764
Next

Return to advanced search