我有一个MS Acccess 2007数据库,我们将jpg图像作为blob插入。我正在寻找一个可以将这些图像导出到MS SQL Server数据库的工具。
任何建议都将受到赞赏。
答案 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/