我可以像这样访问数据库和 oledb 连接:
OleDbConnection Connection;
Connection = new OleDbConnection("Provider=Microsoft.Jet.OleDb.4.0;Data Source=" +
Server.MapPath("~/db.mdb"));
OleDbCommand Command;
Command = new OleDbCommand("SELECT FTPTARIHARALIGI FROM Table1 WHERE ID = 1", Connection);
Connection.Open();
OleDbDataReader reader = Command.ExecuteReader();
Select 命令只返回一个 int 值,我需要将此值访问到变量。
我试过了:
int test = reader.GetInt32(0);
返回:该行/列不存在数据。
但是数据存在并且选择命令有效。
我怎样才能做到这一点?