前端之家收集整理的这篇文章主要介绍了
[VB.NET]如何导入excel表格到数据库,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
如何导入excel表格到
数据库 实现通过vb.net界面操作,找到excel
文件后,点击导入按纽,可以把excel
文件导入到
数据库 __________________________________________________________________________ 1. Find excel file. 2. Use VB.NET to make a datasource from excel,then update database. __________________________________________________________________________ 能不能再详细一点啊 具体怎么操作啊 __________________________________________________________________________ vb.net 的dataset
数据库有从execl中导入数据
功能,你看一下帮助吧,我没用过,但肯定是有的. __________________________________________________________________________ -----------------------我这里有一段
代码是导入ACCESS的,记得将
sql语句仲的SELECT *
修改成SELECT 字段即可。另外想问一下如何将导入默认为第一个表?即EXCEL无论第一个表的
名称为什么都可以导入 Dim conExcel = New OleDb.OleDbConnection() Try Dim openFile = New OpenFileDialog() ''//打开
文件对话框。 openFile.Filter = ("Excel
文件(*.xls) |*.xls") ''//后缀名。 If openFile.ShowDialog() = Windows.Forms.DialogResult.OK Then Dim filename As String = openFile.FileName Dim index As Integer = filename.LastIndexOf("//") ''
截取文件的名字 filename = filename.Substring(index + 1) conExcel.ConnectionString = " Provider=Microsoft.Jet.OleDb.4.0;Data Source=
数据库.mdb;Persist Security Info=false;" ''"Provider=Microsoft.Jet.Oledb.4.0;Data Source=" + Application.StartupPath + "//Appdata.mdb" ''将excel导入access Dim
sql As String = "insert into info select * from [Excel 8.0;database=" + filename + "].[导入格式$] where studid not IN (select studid from info)" Dim com As OleDb.OleDbCommand = New OleDb.OleDbCommand(
sql,conExcel) conExcel.Open() com.ExecuteNonQuery() End If Catch ex As Exception Message
Box.Show(ex.ToString()) Finally conExcel.Close() Message
Box.Show("导入数据成功","导入数据",Message
BoxButtons.OK,Message
BoxIcon.Information) End Try ------------------------ __________________________________________________________________________
原文链接:https://www.f2er.com/vb/263839.html