此代码从Access文件(.mdb)读取表信息,并将表信息复制到sql server表。
此代码将Access文件中的field1
复制到sql server表中的field1
,并将field2
复制到field2
并...
这段代码工作正常,但我想要更改副本。
我想将name
字段从Access文件复制到sql server表中的nameperson
字段。
例如,在访问sql server表中的field1
时复制field5
。
我该怎么做?
OpenFileDialog openfiledialog1 = new OpenFileDialog();
openfiledialog1.Title = "select path access file";
openfiledialog1.Filter = "Access 2003 (*.mdb)|*.mdb";
if (openfiledialog1.ShowDialog() == DialogResult.OK)
{
string connectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + openfiledialog1.FileName;
const string connectionStringDest = @"server=ahmad-pc\anfd;database = phonebook;Integrated Security = true";
using (var sourceConnection = new OleDbConnection(connectionString))
{
sourceConnection.Open();
var commandSourceData = new OleDbCommand("SELECT id , name , family from numberperson", sourceConnection);
var reader = commandSourceData.ExecuteReader();
using (var destinationConnection = new SqlConnection(connectionStringDest))
{
destinationConnection.Open();
using (var bulkCopy = new SqlBulkCopy(destinationConnection))
{
bulkCopy.DestinationTableName = "profile2";
try
{
bulkCopy.WriteToServer(reader);
}
catch (Exception ex)
{
Console.WriteLine(ex.Message);
}
finally
{
reader.Close();
}
}
}
MessageBox.Show("copy successully");
}
}
答案 0 :(得分:0)
参见下面的示例,我为您将列名转换为nameperson
添加了一个映射[...]
using (var bulkCopy = new SqlBulkCopy(destinationConnection))
{
bulkCopy.ColumnMappings.Add("name", "nameperson"); //THIS A MAPPING REPLACE IT WITH YOUR NEED
bulkCopy.DestinationTableName = "profile2";
[....]