string insertCommand =
"INSERT INTO Users (UserID) VALUES" + "" + "(CONVERT(uniqueidentifier, '" +
UsersIdentityToinsert + "'),'"+ userName+",0,null')";
it tells me:
There are fewer columns in the INSERT statement than values specifiedin the VALUES clause. The number of values in the VALUES clause must match the number of columns specified in the INSERT statement.
But i have four columns?