Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Inputting information into a table

Status
Not open for further replies.

woodyinoz

IS-IT--Management
Jan 8, 2002
215
GB
Hi all,

I am looking to populate an empty table with information from a table held within an SQLBase table.

When I try and append using 'dataTransfer' Paradox tells me that I my 'Alias is a Server'.

Can anyone suggest an alternative to the coding below so that I can carry out what I'm trying to do?

dthandle.SetSource (":SQLBase:REQUIREMENT")
if dthandle.getSourceType ( ) = DTASCIIFixed Then
dthandle.loadDestSpec ( "SpecTable" )
endIf
dthandle.setDest ( "Requirement.db" )
if not dthandle.getAppend () then
dthandle.setAppend ( True )
endif
dthandle.transferData ( )


Thanks in advance,

Woody
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top