文件名称:把txt文件导入到sql的程序
文件大小:303KB
文件格式:RAR
更新时间:2015-01-23 06:16:34
源码 .net 数据库 txt sql
http://blog.csdn.net/xiaoxiao108/article/details/7172558 最近可以从网上下载到很多数据库,下载下来都是txt的,不方便查询,写了个小程序把txt数据导入到sql里面 环境 vs2008 SQL2000 实现方法很简单 1.读出txt中的每一行。 2.从每一行中分出用户名账号密码。 3.把每一条数据插入到sql中 具体代码 string[] strs = File.ReadAllLines("F:\\db.txt"); MessageBox.Show("共" + strs.Length + "条数据"); this.progressBar1.Maximum = strs.Length; int count = 0; foreach (string str in strs) { try { string[] arr = Regex.Split(str, " # ", RegexOptions.None);// 比如txt中每行数据使用 # 分割的 Result rs = new Result(); rs.Value1 = "xxxx数据库"; rs.Value2 = arr[0]; rs.Value3 = arr[1]; rs.Value4 = arr[2]; ResultManager.AddResult(rs); } catch (Exception ex) { MessageBox.Show(str + " " + ex.ToString()); } count++; this.progressBar1.Value = count; } MessageBox.Show("OK"); 源码下载地址 根据需要自己修改源码 http://blog.csdn.net/xiaoxiao108/article/details/7017332
【文件预览】:
GMGDAL
----GMGDAL.csproj(2KB)
----bin()
--------Debug()
----obj()
--------Debug()
----ResultService.cs(6KB)
----Properties()
--------AssemblyInfo.cs(1KB)
----DBHelper.cs(4KB)
WindowsFormsApplication2.suo
GMGModels
----Result.cs(2KB)
----bin()
--------Debug()
----obj()
--------Debug()
----Properties()
--------AssemblyInfo.cs(1KB)
----GMGModels.csproj(2KB)
WindowsFormsApplication2
----Form1.cs(2KB)
----bin()
--------Debug()
----obj()
--------Debug()
----Properties()
--------Resources.Designer.cs(3KB)
--------Settings.settings(945B)
--------Resources.resx(5KB)
--------Settings.Designer.cs(2KB)
--------AssemblyInfo.cs(1KB)
----Program.cs(505B)
----Form1.Designer.cs(2KB)
----WindowsFormsApplication2.csproj.user(488B)
----Form1.resx(6KB)
----app.config(327B)
----WindowsFormsApplication2.csproj(6KB)
sql2000数据库
----Spider_Data.MDF(1024KB)
----Spider_Log.LDF(1024KB)
GMGBLL
----bin()
--------Debug()
----obj()
--------Debug()
----Properties()
--------AssemblyInfo.cs(1KB)
----GMGBLL.csproj(2KB)
----ResultManager.cs(989B)
WindowsFormsApplication2.sln