I made a programm, which shows a table from my database.
The Statement looks like that:
string sql = ("select CCase.RefNo AS Az, EventTemplate.EventCode AS
Vorgang from ikaros.CCase join ikaros.Event on CCase.ID =
Event.CCaseID join ikaros.EventTemplate on Event.EventTemplateID =
EventTemplate.ID where EventTemplate.EventCode='IRVB' and
Event.EventDate ='2014-07-03' order by CCase.RefNo ASC");
Now with
Event.EventDate='2014-07-03'
I get the table of that Date which is given in the SELECT Statement. But I want give the user the opportunity to give a other Date in a Textbox. The Textbox should change the Date in the Statement.
I looked here:
But it's not the same issue which I have. If this is a duplicate and I was just to silly to find it, please tell me.