
[英]System.Data.OleDb.OleDbException: 'Not a valid file name.'
[英]System.Data.OleDb.OleDbException: Not a valid file name
如果您访问:
您将看到错误/消息:
源错误:
An unhandled exception was generated during the execution of the current web request. Information regarding the origin and location of the exception can be identified using the exception stack trace below.
堆栈跟踪:
[OleDbException (0x80004005): Not a valid file name.]
System.Data.OleDb.OleDbConnectionInternal..ctor(OleDbConnectionString constr, OleDbConnection connection) +351
System.Data.OleDb.OleDbConnectionFactory.CreateConnection(DbConnectionOptions options, Object poolGroupProviderInfo, DbConnectionPool pool, DbConnection owningObject) +86
System.Data.ProviderBase.DbConnectionFactory.CreateNonPooledConnection(DbConnection owningConnection, DbConnectionPoolGroup poolGroup) +31
System.Data.ProviderBase.DbConnectionFactory.GetConnection(DbConnection owningConnection) +76
System.Data.ProviderBase.DbConnectionClosed.OpenConnection(DbConnection outerConnection, DbConnectionFactory connectionFactory) +126
System.Data.OleDb.OleDbConnection.Open() +43
Acoin.index.Page_Load(Object sender, EventArgs e) +145
System.Web.Util.CalliHelper.EventArgFunctionCaller(IntPtr fp, Object o, Object t, EventArgs e) +14
System.Web.Util.CalliEventHandlerDelegateProxy.Callback(Object sender, EventArgs e) +35
System.Web.UI.Control.OnLoad(EventArgs e) +91
System.Web.UI.Control.LoadRecursive() +74
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +2207
这是我的代码;
string connectionString = "Provider=Microsoft.ACE.OLEDB.12.0;Data Source=http://www.acoin.co.il/database1.mdb;Persist Security Info=False";
OleDbConnection conn = new OleDbConnection(connectionString);
conn.Open();
似乎该URL已损坏(与OleDB连接无关):
http://www.acoin.co.il/database1.mdb :
404-找不到文件或目录。
您正在寻找的资源可能已被删除,名称已更改或暂时不可用。
但是,如果您可以使用HTTP URL作为数据库文件位置,我会感到惊讶
声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.