I have access database and oledb connection like this:
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 command returns just an int value, and I need to access this value to variable.
I tried:
int test = reader.GetInt32(0);
Return: No data exists for the row/column.
But data exists and select command works.
How can I do this?
OleDbDataReader
start out before the first row. If you don't callOleDbDataReader.Read
method, you never reach the first row.From
OleDbDataReader.Read
Method;And use
using
statement to dispose yourOleDbConnection
,OleDbCommand
andOleDbDataReader
.If you wanna get just one cell of your data,
ExecuteScalar
is a better option. It returns the first column of the first row as anobject
.