本文介绍了无法打开为以前版本的应用程序创建的数据库的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

尝试使用ADOclass尝试oepn数据库(.mdb)文件时出错。



错误信息如下所述无法打开创建的数据库使用之前版本的应用程序



您能否告诉我如何解决问题。



我尝试过:



CDAO m_pReportDB;



sRepDbPath =Provider = Microsoft.ACE.OLEDB.12.0;+ CString(Data Source =)+ sRepDbPath;



if(m_pReportDB.Open(sRepDbPath))

I got a error when trying to oepn a database(.mdb) file througu using ADOclass.

The error message is mentioned below "cannot open a database created with a previous version of your application"

Could you please let me know how to solve the problem.

What I have tried:

CDAO m_pReportDB;

sRepDbPath = "Provider=Microsoft.ACE.OLEDB.12.0; " + CString("Data Source=") + sRepDbPath;

if (m_pReportDB.Open(sRepDbPath))

推荐答案


这篇关于无法打开为以前版本的应用程序创建的数据库的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-24 09:25