forum

Home / DeveloperSection / Forums / ASP.Net don't match the Access Date/Time Column

ASP.Net don't match the Access Date/Time Column

Anonymous User200916-Jan-2015

I'm trying to sort for today. I am giving match error while I am comparing.

OleDbConnection baglanti = new OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=C:\\Users\\Dragonfly\\Documents\\Visual Studio 2013\\WebSites\\WebSite2\\App_Data\\calismagunluk.mdb");

OleDbDataReader oku;

OleDbCommand sorgu =new OleDbCommand();

DateTime bugun = DateTime.Now.Date;

sorgu.CommandText = "select * from calisan where kulID=" + sesionKulId +

    " AND gun='" + bugun + "' ";

 oku = sorgu.ExecuteReader();//I give error in here

    if (oku.HasRows) {

    Repeater1.DataSource = oku;

    Repeater1.DataBind();

    oku.Dispose();}

    else{

        Repeater1.Visible = false;

        repeaterBos.Text = "Bugün Hiç Çalışma Yapmamışsınız...";

        oku.Dispose();

    }

I am getting this error: "Data type mismatch in criteria expression".

If I change the db column to Text, it is working. But I don't want it this way. How should I follow the way?


Updated on 16-Jan-2015
I am a content writter !

Can you answer this question?


Answer

1 Answers

Liked By