Append From- RESOLVED

Post Reply
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Append From- RESOLVED

Post by Silvio.Falconi »

a sample of append from ( two dbf same structure)

thanks
Last edited by Silvio.Falconi on Tue Sep 03, 2019 2:50 pm, edited 1 time in total.
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
wmormar
Posts: 1050
Joined: Fri Oct 07, 2005 10:41 pm
Location: México
Contact:

Re: Append From

Post by wmormar »

Silvio,

USE test1 EXCLUSIVE
APPEND FROM test2
CLOSE DATABASES

USE test1
xbrowse()

Saludos
William, Morales
Saludos

méxico.sureste
User avatar
ukoenig
Posts: 3981
Joined: Wed Dec 19, 2007 6:40 pm
Location: Germany
Contact:

Re: Append From

Post by ukoenig »

Silvio,

I think You changed to TDatabase

oData := TDatabase():New( , "CUST1", "DBFCDX", .F. ) // exclusive
oData:use()
// AppendFrom( cFile, aFields, bFor, bWhile, nNext, nRec, lRest )
oData:AppendFrom( "CUST2" )
oData:Close()
oData := TDatabase():New( , "CUST1", "DBFCDX", .T. ) // shared
oData:use()
xBrowse(oData)


regards
Uwe :?:
Since 1995 ( the first release of FW 1.9 )
i work with FW.
If you have any questions about special functions, maybe i can help.
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: Append From

Post by Silvio.Falconi »

thanks i wish tdatabase
the function of conversion of dbf also not run ok and i tried also with tdatabase while with normal ( silvio->) it is ok
this afternoon i will try it
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
User avatar
Silvio.Falconi
Posts: 4956
Joined: Thu Oct 18, 2012 7:17 pm

Re: Append From

Post by Silvio.Falconi »

RESOLVED
NOT NEED APPEND FROM
now I can converte all database on my dbf :)
I use : FiveWin for Harbour August 2020 (Revision) - Harbour 3.2.0dev (r1712141320) - Bcc7.30 - xMate ver. 1.15.3 - PellesC
Post Reply