Click here to Skip to main content
15,879,535 members
Articles / Programming Languages / C#

Genesis Hybrid Smart Client Framework part III

Rate me:
Please Sign up or sign in to vote.
4.29/5 (10 votes)
19 Jun 2009Ms-PL10 min read 33.9K   7  
This is part III of a VII part series. This article covers the back-end of the Genesis Smart Client Framework including the database design.
��USE [BlueMarble.Genesis.Dev]



/****** Object:  StoredProcedure [dbo].[update_Module_Command]    Script Date: 05/20/2009 22:37:02 ******/

SET ANSI_NULLS ON

GO

SET QUOTED_IDENTIFIER ON

GO

create procedure [dbo].[update_Module_Command]



			 @CommandGuid uniqueidentifier

            ,@FileGuid uniqueidentifier

            ,@CommandName nvarchar(50)

            ,@CommandCode nvarchar(50)

            ,@CommandDescription ntext

            ,@CommandType nvarchar(512)



as



UPDATE [Genesis].[dbo].[Module_Command]

   SET [FileGuid] = @FileGuid

      ,[CommandName] = @CommandName

      ,[CommandCode] = @CommandCode

      ,[CommandDescription] = @CommandDescription

      ,[CommandType] = @CommandType



 WHERE CommandGuid = @CommandGuid

GO

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Microsoft Public License (Ms-PL)


Written By
We Fix Code
South Africa South Africa
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions