Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
APPEND BLAN at middle of table
Message
 
To
10/08/2000 00:42:45
General information
Forum:
Visual FoxPro
Category:
Coding, syntax & commands
Miscellaneous
Thread ID:
00403252
Message ID:
00403697
Views:
16
Using just append you can't do it. Create an index is the best solution.
In the worst case try this (Only if necesary .This is a bad solutions for long databases)

P.e If you decide insert a new record in the third pos.

m.field1="value1"
m.field1="value2"


Select * from mytable into table tmp1 where recno()>3 && Get the last records

Select mytable

Delete all for recno()>3 && delete the records in the temporay table

insert into tmp from memvar

Append from tmp1

Juan C.
"Anyone who has never made a mistake has never tried anything new." A.E
"The important thing is not to stop questioning. Curiosity has its own reason for existing." A.E
Previous
Reply
Map
View

Click here to load this message in the networking platform