I tried installing the module and got an error. I installed the first zip file as the readme said and that went fine. However, when I went to install the calendar module I got this error. SQL Execution resulted in following Exceptions: System.Data.SqlClient.SqlException: Invalid column name 'Status'. at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.SqlInternalConnection.OnError(SqlException exception, Boolean breakConnection) at System.Data.SqlClient.TdsParser.ThrowExceptionAndWarning(TdsParserStateObject stateObj) at System.Data.SqlClient.TdsParser.Run(RunBehavior runBehavior, SqlCommand cmdHandler, SqlDataReader dataStream, BulkCopySimpleResultSet bulkCopyHandler, TdsParserStateObject stateObj) at System.Data.SqlClient.SqlCommand.RunExecuteNonQueryTds(String methodName, Boolean async) at System.Data.SqlClient.SqlCommand.InternalExecuteNonQuery(DbAsyncResult result, String methodName, Boolean sendToPipe) at System.Data.SqlClient.SqlCommand.ExecuteNonQuery() at DotNetNuke.Data.SqlDataProvider.ExecuteADOScript(String SQL) at DotNetNuke.Data.SqlDataProvider.ExecuteScript(String Script, Boolean UseTransactions) CREATE PROCEDURE dbo.EventsCalendarIsUserRegistered ( @ModuleID int, @UserID int, @EventDate datetime, @EventID int ) AS Select Count(*) From dbo.eventscalendarregistration where Memberid = @UserID and ItemID = @EventID and ModuleID = @ModuleID and EventDate = @EventDate and Status <||> 3 What can I do to fix this?
|