Click here to Skip to main content
15,893,161 members
Articles / Web Development / ASP.NET

Using Silverlight in Enterprise: RAD of User Friendly Database Access

Rate me:
Please Sign up or sign in to vote.
4.81/5 (19 votes)
31 Jul 2009CPOL8 min read 58.2K   7K   80  
This article introduces FulcrumWeb RAD Framework - A Silverlight UI Engine to build user friendly database driven applications
if exists (select * 
             from dbo.sysobjects 
            where id = object_id(N'[dbo].[p_Set_LanguageCd]') 
              and objectproperty(id, N'IsProcedure') = 1)
  drop procedure [dbo].[p_Set_LanguageCd]
go

/*
  Sets current language
*/
CREATE procedure dbo.p_Set_LanguageCd
(
  @LanguageCd UDT_LANG_CD
)
as
begin
  declare @BinVar         varbinary(128),
          @DocumentId     int,
          @UserId         int,
          @ApplicationCd  UDT_STRING,
          @CurrencyCd     UDT_STRING
          
  set @DocumentId    = dbo.f_Get_Id_From_CONTEXT_INFO('D')
  set @UserId        = dbo.f_Get_Id_From_CONTEXT_INFO('U')
  set @ApplicationCd = dbo.f_Get_Str_From_CONTEXT_INFO('A')
  set @CurrencyCd    = dbo.f_Get_Str_From_CONTEXT_INFO('C')
  
  set @BinVar = dbo.f_Build_CONTEXT_INFO(@DocumentId, @UserId, @ApplicationCd, @LanguageCd, @CurrencyCd)
  
  SET CONTEXT_INFO @BinVar
end

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 Code Project Open License (CPOL)


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

Comments and Discussions