ImportDBFile
用来将其他各式数据文件中指定表的数据合并到当前表中。
语法:
ImportDBFile(SourceFile, FileType,SourceGrid)
SourceFile 指定文件名
FileType 指定文件类型
1 = Access 2000
2 = dBase III
3 = dBase IV
4 = dBase 5.0
5 = Excel 5.0
6 = Excel 8.0
7 = FoxPro 2.0
8 = FoxPro 2.5
9 = FoxPro 2.6
10 = FoxPro 3.0
SourceGrid 指定表,对于dbf文件,无需设置这个参数。
例子:
ImportDBFile("c:\NorthWind.mdb",1,"Oders")
将文件c:\NorthWind.mdb中的Orders表的数据追加到当前表中。
ImportDBFile("c:\Orders.dbf",9)
将文件c:\Orders.dbf的数据追加到当前表中,假定该DBF文件的类型是Foxpro 2.6