MS Access 2007 Blob图像导出?

时间:2010-07-27 20:21:26

标签: image ms-access export blob

我有一个MS Acccess 2007数据库,我们将jpg图像作为blob插入。我正在寻找一个可以将这些图像导出到MS SQL Server数据库的工具。

任何建议都将受到赞赏。

1 个答案:

答案 0 :(得分:0)

如果您是程序员,请使用C#编写快速代码。您需要使用 OleDbConnection,OleDbCommand,OleDbDataReader

OleDbConnection aConnection = new OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=c:\\db1.mdb");
//create the command object and store the sql query
OleDbCommand aCommand = new OleDbCommand("select * from image_table", aConnection);
OleDbDataReader aReader = aCommand.ExecuteReader();
//now read the data and dump it
while(aReader.Read())
{
    // your code here
}

参考:http://www.csharphelp.com/2006/01/ms-access-application-with-c/

OR

  1. export your data to SQL Server
  2. 使用SQL Management Studio导出表进行SQL查询