Search found 28 matches: crdd

Return to advanced search

Re: Incluyendo el SQLRDD

Descubriendo más misterios... Si se usa SR_UseDeleteds(.F.) ANTES de la apertura con USE ( cTable ) EXCLUSIVE VIA ( cRDD ), SQLRDD crea el campo sr_deleted, si no lo tiene, de forma automática Entiendo que SR_UseDeleteds(.F.) no conserva el valor globalmente, si no se define inmediatamente ...
by Joaquim Ferrer
Fri Aug 25, 2023 9:18 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Incluyendo el SQLRDD
Replies: 40
Views: 2535

Re: funciones de FWH y Harbour en un archivo .txt

... DBCopyStruct(<cDatabase>,[<aFieldList>])->Nil DBCreate(<cFile>,<aStruct>,<cRDD>,[<lKeepOpen>],[<cAlias>],[<cDelimArg>],[<cCodePage>],[<nConnection>])->Nil DBCreateIndex(<cIndexName>,<cKeyExpr>,<bKeyExpr>,[<lUnique>])->Nil ...
by carlos vargas
Sat Oct 21, 2017 8:44 pm
 
Forum: FiveWin para Harbour/xHarbour
Topic: funciones de FWH y Harbour en un archivo .txt
Replies: 7
Views: 5690

Re: TXIMAGE error?

... But I have some public variable to explain the customer (coname), module (cmodule), userid (us_name), station id (Networks), path (cPath), rdd (cRdd), contactinfo (cContInfo), EXE Verion (cEXEVerion), data path (cPath). Did you put this code into your link files or changed FW source ? I never ...
by Marc Venken
Sun Sep 17, 2017 8:54 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXIMAGE error?
Replies: 12
Views: 2539

Re: TXIMAGE error?

... But I have some public variable to explain the customer (coname), module (cmodule), userid (us_name), station id (Networks), path (cPath), rdd (cRdd), contactinfo (cContInfo), EXE Verion (cEXEVerion), data path (cPath). Hey Dutch, I see that you have a other 'ERRORLOG' dialog that has the posibility ...
by dutch
Sun Sep 17, 2017 1:08 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: TXIMAGE error?
Replies: 12
Views: 2539

TDatabase FWH 17.08 : Datas and Methods

... makes it safe. 16. CloseIndex() Closes index 17. Commit() Performs COMMIT for the Alias 18. CopyTo( cFile, aFields, bFor, bWhile, nNext, nRec, cRdd, cCp ) Executes COPY TO command 19. CreateIndex( cFile, cTag, cKey, bKey, lUnique) ( ::nArea )->( OrdCreate( cFile, cTag, cKey, bKey, lUnique ...
by nageswaragunupudi
Fri Sep 15, 2017 12:50 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: TDatabase FWH 17.08 : Datas and Methods
Replies: 1
Views: 1782

Re: DBF editors

ZAP errors out Workaround: 1. uncommanded local cRdd := (cAlias)->(RddName()) 2. and before reopening insert cFileName := UPPER(cPath+cFileName+cExtension) ACTIVATE DIALOG oDlg CENTER SELECT (cAlias) IF lShared USE cFileName := UPPER(cPath+cFileName+cExtension) ...
by Otto
Tue Sep 13, 2016 2:23 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF editors
Replies: 16
Views: 4430

Re: Nuevo ADORDD

... con MySql y ACCESS única pero debe wok con todos los demás.  Nueva SET ADO TABLENAME CON EL CAMINO DE ON / OFF  Nueva hb_AdoUpload (cBaseDir, CRDD, DBEngine, lOverWrite)  Nueva HB_adorddFile (cFichero) Reemplaza archivos ()  Nueva hb_ADOrddCOPYFILE (cTableOrigin, cTableDestination) Reemplaza ...
by AHF
Fri Oct 16, 2015 7:58 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: Nuevo ADORDD
Replies: 55
Views: 16486

Re: ADO RDD xHarbour

... any keyword. Tested with MySql and ACCESS only but should wok with all others. New SET ADO TABLENAME WITH PATH ON /OFF New hb_AdoUpload( cBaseDir, cRDD, dbEngine, lOverWrite ) New HB_adorddFile( cFile) Replaces File() New hb_ADOrddCOPYFILE( cTableOrigin, cTableDestination ) Replaces CopyFile() ...
by AHF
Fri Oct 16, 2015 7:55 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: ADO RDD xHarbour
Replies: 1047
Views: 446012

Re: DBF TEMPORARY

Biel, The Temporary File is created on the hard disk? or in memory? In memory. James Thanks James, what is confusing me is the 3st parameter cRDD. I never used but like mentioned Carles there are Memory RDD like ArrayRDD and HB_MEMIO, if not misunderstand hb_DbCreateTemp will use one of those ...
by Biel EA6DD
Tue Jul 14, 2015 3:54 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF TEMPORARY
Replies: 50
Views: 12194

Re: DBF TEMPORARY

... itself is an Alias ( not a file name ) and this Alias is the workarea. Example: cAlias := cGetNewAlias() if HB_DbCreateTemp( cAlias, aStruct, cRDD ) // do work with cAlias // ? SELECT( cArea ) is the number of the work area. CLOSE cAlias endif The Temporary File is created on the hard disk? ...
by Biel EA6DD
Tue Jul 14, 2015 2:18 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF TEMPORARY
Replies: 50
Views: 12194

Re: DBF TEMPORARY

The first parameter itself is an Alias ( not a file name ) and this Alias is the workarea.

Example:
cAlias := cGetNewAlias()
if HB_DbCreateTemp( cAlias, aStruct, cRDD )
// do work with cAlias
// ? SELECT( cArea ) is the number of the work area.
CLOSE cAlias
endif
by nageswaragunupudi
Mon Jul 13, 2015 11:58 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF TEMPORARY
Replies: 50
Views: 12194

Re: DBF TEMPORARY

nageswaragunupudi wrote:HB_DBCreateTemp( cAlias, aStruct, cRDD ) --> lSuccess
... use cAlias like any other alias
CLOSE cAlias at the end

Hi,
I am trying to substitute temporary database file with this, how can I associate an area to it?
Regards,
Antonino
by AntoninoP
Mon Jul 13, 2015 3:28 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF TEMPORARY
Replies: 50
Views: 12194

Re: DBF TEMPORARY

HB_DBCreateTemp( cAlias, aStruct, cRDD ) --> lSuccess
... use cAlias like any other alias
CLOSE cAlias at the end
by nageswaragunupudi
Thu Jul 09, 2015 12:35 pm
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF TEMPORARY
Replies: 50
Views: 12194

Re: DBF to CSV - converter 1.2 ( Update )

... of the tool ) You can define fixed values ( not using the INI ) cDBF := "C:\Test\customer.dbf" cCSV := "C:\Test\customer.csv" cRDD := "DBFCDX" cEOL := "\###" cDateFmt := "yy-mm-dd" cHeader := "Yes" cMemos := "Yes" cMemoline ...
by ukoenig
Sat Jan 18, 2014 11:45 am
 
Forum: FiveWin for Harbour/xHarbour
Topic: DBF to CSV - converter 3.1 ( Update )
Replies: 50
Views: 13230

No responde a ALT + (Letra definida) (Fwh 11.12)

... : '")+alltrim(oApp:cSqlHs1)+iif(wfcoi=="I","', Engine : ","', Motor : ")+oApp:cEngine+" Via : "+oApp:cRdd TRANSPARENT REDEFINE GET oUsua VAR cUsua ID 110 OF oDlg PICTURE "@!" VALID !empty(cUsua) REDEFINE GET oPass VAR cPass ID 120 OF oDlg ...
by Enrrique Vertiz
Tue Jan 10, 2012 6:06 am
 
Forum: FiveWin para Harbour/xHarbour
Topic: No responde a ALT + (Letra definida) (Fwh 11.12)
Replies: 11
Views: 4246
Next

Return to advanced search