Hello,
I am trying to find out the differences between DotNetNuke 4.3.3(Final Release) and DotNetNuke 4.0.3.
i.e Any new feature included in DNN 4.3.3 that is not in 4.0.3.
One difference I know of is that there is some additional features in the SqlDataProvider.vb file in DNN 4.3.3 that is not
in DNN 4.0.3. For example, we have the below coded in the SqlDataProvider.vb file in DNN 4.3.3, which is not found in DNN 4.0.3.
#Region "Generic Methods"
'Generic Methods
'===============
'
''' -----------------------------------------------------------------------------
''' <summary>
''' ExecuteReader executes a stored procedure or "dynamic sql" statement, against
''' the database
''' </summary>
''' <remarks>
''' </remarks>
''' <param name="ProcedureName">The name of the Stored Procedure to Execute</param>
''' <param name="commandParameters">An array of parameters to pass to the Database</param>
''' <history>
''' [cnurse] 12/11/2005 created
''' </history>
''' -----------------------------------------------------------------------------
Public Overrides Sub ExecuteNonQuery(ByVal ProcedureName As String, ByVal ParamArray commandParameters() As Object)
SqlHelper.ExecuteNonQuery(ConnectionString, DatabaseOwner & ObjectQualifier & ProcedureName, commandParameters)
End Sub
Public Overrides Function ExecuteReader(ByVal ProcedureName As String, ByVal ParamArray commandParameters() As Object) As IDataReader
Return SqlHelper.ExecuteReader(ConnectionString, DatabaseOwner & ObjectQualifier & ProcedureName, commandParameters)
End Function
Public Overrides Function ExecuteScalar(ByVal ProcedureName As String, ByVal ParamArray commandParameters() As Object) As Object
Return SqlHelper.ExecuteScalar(ConnectionString, DatabaseOwner & ObjectQualifier & ProcedureName, commandParameters)
End Function
#End Region
I am just trying to see if it is worth upgrading from DNN 4.0.3 to DNN 4.3.3(Final Release) and if so, what is the fastest and easiest way to do this upgrade.
Hope to hear from someone soon.
Thanks in advance.