Need to import data from excel to Mysql. I am getting an error when fetching the excel sheet to database table.i got an error message like this
external table is not in the expected format
in c# windows form application.So any one find where exactly the error.
This is what I am trying
using MySql.Data.MySqlClient;
using System;
using System.Data;
using System.Data.OleDb;
using System.Data.SqlClient;
using System.Windows.Forms;
namespace IMPORT
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
String MyConString = "SERVER=*******;" +
"DATABASE=db;" +
"UID=uid;" +
"PASSWORD=pwd;" + "Convert Zero Datetime = True";
private void ButtonFile_Click(object sender, EventArgs e)
{
OpenFileDialog openfiledialog1 = new OpenFileDialog();
openfiledialog1.ShowDialog();
openfiledialog1.Filter = "allfiles|*.xls";
TextBox1.Text = openfiledialog1.FileName;
}
private void ButtonUpload_Click(object sender, EventArgs e)
{
String connectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" +
"Data Source=" + TextBox1.Text + ";" +
"Extended Properties=Excel 8.0;";
OleDbConnection xlConn = new OleDbConnection(connectionString);
xlConn.Open();
DataTable data = new DataTable();
OleDbCommand selectCmd = new OleDbCommand("SELECT * FROM [Sheet1$]", xlConn);
OleDbDataAdapter xlAdapter = new OleDbDataAdapter();
OleDbDataReader datare = selectCmd.ExecuteReader();
xlAdapter.Fill(data);
DataSet xlDataset = new DataSet();
string sqlConnectionString = MyConString;
using (SqlBulkCopy bulkCopy = new SqlBulkCopy(sqlConnectionString))
{
bulkCopy.ColumnMappings.Add("id", "id");
bulkCopy.ColumnMappings.Add("password", "password");
bulkCopy.ColumnMappings.Add("name", "name");
bulkCopy.DestinationTableName = "TableName";
bulkCopy.WriteToServer(datare);
MessageBox.Show("Upload Successfull!");
}
}
}
}
Thanks for your help in advance.
Beside the exception, make sure that you always close connections. In any case, the following might fix your issues:
You have to make sure that the column names match and that you table name is correct as well.
This is based on an example found here.