Hi,
I am very much new to Navision.
I'm trying to update a table from my windows application (.NET 2.0). I'm not able to insert or update, But I'm able to select the values.
I get an error stating Driver does not support this function.
This is the code
OdbcDataReader objdrRecCount;
strSql = "Update Currency_Exchange_Rate SET Exchange_Rate_Amount = " + Exchange_Rate_Amount + " WHERE Currency_Code = '" + strCurrencyCode + "' AND Starting_Date = { d '" + strXMLFeedDate + "'}";
objCmd = new OdbcCommand(strSql, objConn);
objConn.Open();
objCmd.ExecuteReader();
I'm struggling with this for almost 2 days now, any help is appreciated.
Thanks
KK
Thanks
Comments
Instead use CFront.
Independent Consultant/Developer
blog: https://dynamicsuser.net/nav/b/ara3n
the weird thing however is, i noticed that it does insert / update the records but also throws the above said exception :-k
this is driving me nuts.... ](*,)