This is the place to report bugs and get support. When posting in this forum, please always provide as much detail as possible.
Please do not report problems with a custom build or custom code in this forum. If you are producing your own build from the source code and have problems or questions, ask in the developer forum, do not report it as a bug.
When posting in this forum, please try to provide as many relevant details as possible. Particularly the following:
There is a bug on line 456 of the DBPoll.cs file in the MSSQL Project
else
{
arParams[0] = new SqlParameter("@PollGuid", SqlDbType.UniqueIdentifier);
arParams[0].Direction = ParameterDirection.Input;
arParams[0].Value = pollGuid;
arParams[1] = new SqlParameter("@ModuleID", SqlDbType.Int);
arParams[1].Direction = ParameterDirection.Input;
arParams[1].Value = pollGuid;
}
Should be arParams[1].Value = moduleID;
Hi,
Thanks! I fixed that just now in my copy.
Note that if the Web.config setting CacheMSSQLParameters is true (which it is by default) then the parameter was set correctly, so to avoid this issue for now leave that setting as true.
Best,
Joe