首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 开发语言 > C++ Builder >

GUI连接ACCESS数据库的语句解决思路

2012-03-24 
GUI连接ACCESS数据库的语句我正在学习c#程序开发,现在要做个桌面应用程序,需要连接数据库(access),我们老

GUI连接ACCESS数据库的语句
我正在学习c#程序开发,现在要做个桌面应用程序,需要连接数据库(access),我们老师给的语法是:
  string sqlStr;
  sqlStr = "select * from student where(numb='" + textBox1.Text + "')";
  m_Rec = m_Db.OpenRecordset(sqlStr, dao.RecordsetTypeEnum.dbOpenDynaset, dao.RecordsetOptionEnum.dbDenyWrite, dao.LockTypeEnum.dbOptimistic);.....但是 m_Rec = m_Db.OpenRecordset(sqlStr,dao.RecordsetTypeEnum.dbOpenDynaset,dao.RecordsetOptionEnum.dbDenyWrite,dao.LockTypeEnum.dbOptimistic);出了问题,调试时出现错误,不知是什么原因,希望大家帮我一下。错误如下:
未处理 System.Runtime.InteropServices.COMException
  HelpLink="jeterr40.chm#5003131"
  Message="FROM 子句语法错误。"
  Source="DAO.Database"
  ErrorCode=-2146825157
  StackTrace:
  在 dao.Database.OpenRecordset(String Name, Object Type, Object Options, Object LockEdit)
  在 学生信息管理系统.登录界面.button1_Click(Object sender, EventArgs e) 位置 C:\Users\parkman\Desktop\Visual Studio 2008\学生信息管理系统\学生信息管理系统\登录界面.cs:行号 51
  在 System.Windows.Forms.Control.OnClick(EventArgs e)
  在 System.Windows.Forms.Button.OnClick(EventArgs e)
  在 System.Windows.Forms.Button.OnMouseUp(MouseEventArgs mevent)
  在 System.Windows.Forms.Control.WmMouseUp(Message& m, MouseButtons button, Int32 clicks)
  在 System.Windows.Forms.Control.WndProc(Message& m)
  在 System.Windows.Forms.ButtonBase.WndProc(Message& m)
  在 System.Windows.Forms.Button.WndProc(Message& m)
  在 System.Windows.Forms.Control.ControlNativeWindow.OnMessage(Message& m)
  在 System.Windows.Forms.Control.ControlNativeWindow.WndProc(Message& m)
  在 System.Windows.Forms.NativeWindow.DebuggableCallback(IntPtr hWnd, Int32 msg, IntPtr wparam, IntPtr lparam)
  在 System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg)
  在 System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData)
  在 System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context)
  在 System.Windows.Forms.Application.ThreadContext.RunMessageLoop(Int32 reason, ApplicationContext context)
  在 System.Windows.Forms.Application.Run(Form mainForm)
  在 学生信息管理系统.Program.Main() 位置 C:\Users\parkman\Desktop\Visual Studio 2008\学生信息管理系统\学生信息管理系统\Program.cs:行号 18
  在 System.AppDomain._nExecuteAssembly(Assembly assembly, String[] args)
  在 System.AppDomain.ExecuteAssembly(String assemblyFile, Evidence assemblySecurity, String[] args)
  在 Microsoft.VisualStudio.HostingProcess.HostProc.RunUsersAssembly()
  在 System.Threading.ThreadHelper.ThreadStart_Context(Object state)
  在 System.Threading.ExecutionContext.Run(ExecutionContext executionContext, ContextCallback callback, Object state)
  在 System.Threading.ThreadHelper.ThreadStart()
  InnerException: 


[解决办法]
m_Rec = m_Db.OpenRecordset(sqlStr, dao.RecordsetTypeEnum.dbOpenDynaset, dao.RecordsetOptionEnum.dbDenyWrite, dao.LockTypeEnum.dbOptimistic);
这样用是个什么意思?没这样用过

直接

OleDbAdapter.Fill()就可以取出数据到DataTable/DataSet了

热点排行