Users Pricing

forum

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

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

Anonymous User 2510 16 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?


1 Answers

Markdown for AI

A clean, structured version of this page for AI assistants and LLMs.

Open .md