Well, I m looking around for an article to upgrade existing DNN module, and I found this, It covered how to package your DNN module which you want to protect your source code by releasing the DLL only.
In addition, it also covered “upgrade your DNN module” too, which I m looking for.
Enjoy Reading. Here the [...]
Posts Tagged ‘DNN Deployment’
Package your DNN modules
Posted in DNN Deployment, DNN Module Development, DotNetNuke v4, dnn, dotnetnuke, tagged DNN Deployment, Upgrade DNN Module on May 20, 2008 | Leave a Comment »
Create DNN’s Table & SP script
Posted in DNN Deployment, tagged DNN Deployment on December 19, 2007 | 2 Comments »
Objective to create DNN table & SP scripts is ease for deployment.
Here some very simple example,
CREATE TABLE {databaseOwner}[{objectQualifier}tbl_XYZ](
[xyzId] [int] IDENTITY(1,1) NOT NULL,
[xyzName] [varchar] (100) NOT NULL,
) ON [PRIMARY]
if exists (select * from dbo.sysobjects where id = object_id(N’{databaseOwner}[{objectQualifier}tbl_XYZ]‘) and OBJECTPROPERTY(id, N’IsProcedure’) = 1)
drop procedure {databaseOwner}{objectQualifier}tbl_XYZ_add
GO
Please take note on those red highlighted, you must included this [...]