table1.insert; 
table1.post;
为什么数据不能在当前处插入,而是插到最后一条,应该如何做?多谢

解决方案 »

  1.   

    For Paradox tables with primary indexes, the record is inserted into the dataset in a position based on its index.
    For Paradox tables without primary indexes, the record is inserted into the dataset at the current position.
    For dBASE, FoxPro, and Access tables, the record is physically appended to the dataset at the end. If an index happens to be active, the new record may appear in a position relative to the index, but the record is still actually stored at the end of the table.For SQL databases, the physical location of the insert is implementation-specific. For indexed tables, the index is updated with the new record information.
    记得给分啊!
      

  2.   

    dbf里面没有设关键字,也没有自动字段呀,楼上的能不能提供一些源程序?
      

  3.   

    jycn666(jycn666) 
    已经解释的很清楚了,好好看看!