“System.Data.OleDb.OleDbException”类型的未经处理的异常出现在 LSCommonHelper.dll 中。

问题描述

publicstaticDataSetgetDataSet(stringsqlStr,stringsTable){DataSetset2;OleDbConnectionselectConnection=getConn();try{//selectConnection.Open();OleDbDataAdapteradapter=newOleDbDataAdapter(sqlStr,selectConnection);DataSetdataSet=newDataSet();if(dataSet.Tables.Contains(sTable)){dataSet.Tables[sTable].Clear();}adapter.Fill(dataSet,sTable);set2=dataSet;}catch(Exceptionexception){throwexception;//////错误位置,显示exception是无效的文件名}finally{selectConnection.Close();selectConnection=null;}returnset2;}

解决方案

解决方案二:
一般是数据库路径不对
解决方案三:
数据文件不存在~
解决方案四:
检查了一下,路径是对的,文件也确实是存在的啊
解决方案五:
路径放出来看看
解决方案六:
publicArcCatalog(){InitializeComponent();sAccessConn=LSCommonHelper.DataBaseHelper.GetAccess2007ConnectionString(Application.StartupPath+@"F:ArcCatalogGIS_VS2010LSArcCatalogbinDebugDatagis.accdb");LSCommonHelper.DataBaseHelper.AccessConnectionString=sAccessConn;LSCommonHelper.DataBaseHelper.Connstring=sAccessConn;LSCommonHelper.ControlStyleHelper.InitListViewStyle(this.listView1,false);LoadTreeView();LoadArcToolbox();this.dockPanel1.Text="数据连接";

时间: 2025-01-27 21:15:22

“System.Data.OleDb.OleDbException”类型的未经处理的异常出现在 LSCommonHelper.dll 中。的相关文章

“System.Data.OleDb.OleDbException”类型的未经处理的异常在 System.Data.dll 中发生 其他信息: 找不到文件

问题描述 usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Threading.Tasks;usingSystem.Windows.Forms;usingSystem.IO;usingSystem.Data.OleDb;namespaceyy

“System.ArgumentException”类型的未经处理的异常出现在 mscorlib.dll 中。 其他信息: 实例方法的委托不能具有空“this

问题描述 本人在做数据库课设,没有学过C#,只学过C和C++,做一个简易聊天室今天在连接数据库时,调试出了问题,而错误列表没有出,不知何处下手,求C#大神帮忙以下是代码namespace登录界面{partialclassForm1{///<summary>///必需的设计器变量.///</summary>privateSystem.ComponentModel.IContainercomponents=null;///<summary>///清理所有正在使用的资源.//

急求大神帮助!!C#调用C++dllSystem.AccessViolationException”类型的未经处理的异常出现在 mscorlib.dll 中。

问题描述 "System.AccessViolationException"类型的未经处理的异常出现在mscorlib.dll中.其他信息:尝试读取或写入受保护的内存.这通常指示其他内存已损坏.代码如下//////C++dll代码HWNDhWnd;extern"C"__declspec(dllexport)voidcOSG(HWNDmhWnd){hWnd=mhWnd;}extern"C"__declspec(dllexport)voidInitO

C#“System.Data.SqlClient.SqlException”类型的未经处理的异常出现在 System.Data.dll中

问题描述 代码如下,求教usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;usingSystem.Data.SqlClient;namespace图书管理系统{publicpartialclass图书信息:Form

“System.Data.SqlClient.SqlException”类型的未经处理的异常在 DAL.dll 中发生

问题描述 其他信息:在应使用条件的上下文(在','附近)中指定了非布尔类型的表达式. 解决方案 解决方案二:应该是你连接字符串或者说是SQL执行语句有错误,要看你完整的连接字符串和SQL语句贴出来.

“System.Data.SqlClient.SqlException”类型的未经处理的异常在 AirQualityDB.exe 中发生

问题描述 解决方案 解决方案二:错误很明确啊21312不能转成int类型的,里面多了空格要不报告异常,使用int.TryParse方法

System.NullReferenceException”类型的未经处理的异常出现在 WindowsFormsApplication2.exe 中。

问题描述 usingSystem;usingSystem.Collections.Generic;usingSystem.ComponentModel;usingSystem.Data;usingSystem.Data.SqlClient;usingSystem.Configuration;usingSystem.Drawing;usingSystem.Linq;usingSystem.Text;usingSystem.Windows.Forms;namespaceWindowsFormsApp

求助未处理 System.Data.OleDb.OleDbException Message=标准表达式中数据类型不匹配。

问题描述 Access数据库储存类型是OLE对象 ///<summary>///以二进制的形式将图片存储到数据库中.///</summary> ///<paramname="MID">ID编号</param>///<paramname="p">图片的二进制形式</param>publicvoidSaveImage(stringMID,byte[]p){MyDataClass.con_open()

System.Data.OleDb.OleDbException: 至少一个参数没有被指定值。

问题描述 visual2008的gridview自带更新代码,提示System.Data.OleDb.OleDbException:至少一个参数没有被指定值.在sql测试时更新语句是可以通过的.<asp:SqlDataSourceID="SqlDataSource1"runat="server"ConflictDetection="CompareAllValues"ConnectionString="<%$Connectio