3
Answers

Error : Data type mismatch in criteria expression. (Using M

Paul Rajs

Paul Rajs

7y
240
1
hi Developers ,
when i retrive datas from database i got the following error.
OleDb Exception Was Unhandled
Data type mismatch in criteria expression. (Using Ms Access db)
i don't know what is wrong with my code.below am adding my using code
string str = "select AttendanceLogs.*,Shifts.EndTime,Shifts.BeginTime,Shifts.Break1,Shifts.Break1BeginTime,Break1EndTime from AttendanceLogs inner join Shifts on Shifts.ShiftId = AttendanceLogs.ShiftId where AttendanceDate between '" + sDate + "' AND '" +tDate + "' and EmployeeId ='" + edr.GetValue(0) + "'";
OleDbCommand getLogs = new OleDbCommand(str, Conn);
OleDbDataReader dr = getLogs.ExecuteReader();
so please suggest me if i done any wron in my code.
thanks with
Paul.S
Answers (3)
0
spgilmore

spgilmore

NA 591 0 20y
What for? Why not just use an httprequest to download it directly from the server? If you have to do this, you can always base-64 encode the file and send it as a string in a webservice. I belive that .NET webservices support DIME, which is smaller and has other benefits, but I don't know anything about it.