本文介绍了从文本文件复制数据以访问数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我有这样的文本文件:
ID,编号
1,334455
2,454566
3,76434343

我需要将id和number的值复制到访问数据库的2个字段中.
我该如何在C#中做到这一点?

非常感谢.

I have text files like these:
id,number
1,334455
2,454566
3,76434343
etc.
I need to copy the id and number''s values into 2 fields in an access database.
How shall I do that in c#?

Thanks a lot.

推荐答案


这篇关于从文本文件复制数据以访问数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

07-23 03:05