Re: inserting new record by borisb
borisb
Tue Jan 11 09:29:11 CST 2005
sherry wrote:
> Is it possible to insert a new record within a table? I don't have a way to
> sort. It's just a list that needs to stay in a certain order. I'm using vfp8.
> Thanks
> Sherry
Why not index the table?
anyway, In the table has no indexes You must opened it exclusive & use
INSERT BLANK.
USE MyTable EXCLUSIVE
GO 15
INSERT BLANK
REPLACE Field1 WITH 111 ...
But the Table must have NO indexes no metter if You use order or not