Rss & SiteMap
Foxtable(狐表) http://www.foxtable.com
Importer
Importer类用于导入数据。
属性
方法
示例一
导入Access文件:
Dim ip as New Importer
ip.SourcePath = "c:\Data\销售管理.mdb" '指定数据文件
ip.SourceTableName = "订单" '指定要导入的表
ip.NewTableName ="订单" '导入后的表名
ip.Import()
示列二
导入Excel文件:
Dim ip as New Importer
ip.SourcePath = "c:\Data\销售管理.xls" '指定数据文件
ip.SourceTableName = "订单" '指定要导入的表
ip.NewTableName ="订单" '导入后的表名
ip.Format = "Excel" '指定导入格式
ip.Import()
示例三
导入DBF文件:
Dim ip as New Importer
ip.SourcePath = "c:\Data\" '指定目录
ip.SourceTableName = "订单" '指定要导入的文件“订单.DBF”
ip.NewTableName ="订单" '导入后的表名
ip.Format = "dbase" '指定导入格式
ip.Import()
示例四
导入文本文件:
Dim ip as New Importer
ip.SourcePath = "c:\Data-:special:1:- '指定目录
ip.SourceTableName = "订单" '指定要导入的文件“订单.txt”
ip.NewTableName ="订单" '导入后的表名
ip.Format = "Delimited" '指定导入格式
ip.Import()