The SQL itself is OK, I have checked it and run it in Query Analyzer and the row gets inserted.
When I run the ExecuteNonQuery it returns 0 but nothing is inserted in the table. Very strange. Any ideas?
sql = "insert into MFAnalytics(MFAnalytics_UserID, MFAnalytics_Domain, MFAnalytics_Page, MFAnalytics_Date)";
sql += " values('value1', 'value2','value3',getDate())";
return Dynamicweb.Database.ExecuteNonQuery(sql, @"dbname");
Regards /Aki