Hi,
I am getting the following error while running a select statement (using OleDbCommand).
My query is
SELECT CME
FROM Personnel
WHERE CME = '11349D'
If objOleDbCom.ExecuteScalar() > 0 Then
When i execute the above statement i got this error
Conversion from string "11349D" to type 'Double' is not valid.
My field CME data type is Text
My database is Access 2007
I tried by running my query directly inside database and it is running fine.
Please suggest.
Thanks.