我想要做的就是从.accdb文件中的表中检索数据。
这是我的完整申请:
if word in AB_words:
我想我错过了一些在顶部使用或者我的代码有点破坏因为然后我点击button1标签1文本更改为System.Data.OleDb.OleDbDataReader。
这也是连接访问数据库(.accdb)的正确方法我是否需要this walkthrough才能使其正常工作或者这与我需要做的事情无关?
感谢您的任何信息!非常感谢
答案 0 :(得分:3)
当你调用myReader.ToString()
时,它会返回一个代表当前对象的字符串。所以" System.Data.OleDb.OleDbDataReader"就是这样。
您似乎希望标签与读取的数据相同。我特别不熟悉这个阅读器,但refer here用于文档。
您需要调用其中一个Get*()
函数。
答案 1 :(得分:0)
label1.Text = myReader["CustID"] as string; // if nullable field
或
label1.Text = (string)myReader["CustID"] // if not null