hvað er vitlaust við þetta SQL Statement? <font color=“darkgreen”> /* code start! */ string strDSN = “Provider=Microsoft.Jet.OLEDB.4.0;Data Source=” + System.AppDomain.CurrentDomain.BaseDirectory + “/db/global.mdb”; string strSQL = “INSERT INTO LoginReport (User, IP, Date) VALUES( ‘” + userName + “’, ‘” + userIP + “’, ‘” + userDate + “’ );”; // create Objects of ADOConnection and ADOCommand OleDbConnection myConn = new OleDbConnection(strDSN); OleDbCommand myCmd = new OleDbCommand(strSQL,...