Guys, if you have time to check it out.
This article is related to SP in database server.
Credit to my team mate who found this.
http://furrukhbaig.wordpress.com/2007/08/22/stored-procedures-factssheet/
Archive for December, 2008
interesting article for stored procedure
Posted in MSSQL on December 30, 2008 | Leave a Comment »
Sql Server Login failed without using user login
Posted in ASP.NET 2.0, DNN Deployment, asp.net, tagged dotnetnuke, SQL Server on December 9, 2008 | 1 Comment »
I m faced this problem during setting up the Development Server Envirnonemt for DotNetNuke where web apps in Server A and Database sit in Server B. For more information, you can refer this link (If SQL Server is running on a remote computer and the Web server is running IIS 6.0, give the Web server’s machine [...]
Using TransactionScope in DNN
Posted in DNN Deployment, DNN Module Development, dnn, dotnetnuke, tagged C# on December 6, 2008 | Leave a Comment »
In my previous post, I wrote a post regarding Multiple Records Manipulation using SqlTransaction, but after discussed with the team. I should use TransactionScope in Business Logic Layer which we used to write the code in Controller class.
Here the example.
Must include this namespace “System.Transactions”
public void AddMultipleUserSurvey(List<UserSurveyInfo> objUserSurveyInfoList, int userID)
{
using (TransactionScope objScope = new [...]
Handling Transactions in DotNetNuke Custom Module
Posted in ASP.NET 2.0, DNN Deployment, DNN Module Development, DotNetNuke v4, asp.net, dnn, dotnetnuke on December 4, 2008 | Leave a Comment »
taking a simple example,your application is handling not only DELETE the existing record, at the same time, it INSERT multiple records after the DELETION in SINGLE method you code in Controller Class.
Imagine your create a simple survey form which consist of a checkboxlist which allow the visitor do a simple survey. (they can check one [...]