01.10.00.sql
上传用户:zhuzg88
上传日期:2018-04-24
资源大小:868k
文件大小:1k
源码类别:

SilverLight

开发平台:

C#

  1. /*** This script will only run if the version number in the databse is less than 01.10.00 ***/
  2. if((SELECT REPLACE(VersionNumber,'.','') FROM Version) < '011000')
  3. BEGIN
  4. /*** Insert Default data ***/
  5. DELETE FROM SilverlightDesktopModules WHERE (ModuleName = N'WhoAmI')
  6. INSERT INTO SilverlightDesktopModules (ModuleName, ModuleDescription, AssemblyName, ClassName, IconName, [Role], WindowSize, AllowMultipleInstances)
  7. VALUES(N'WhoAmI', N'Displays information about the current user', N'WhoAmI.xap', N'WhoAmI.Page', N'WhoAmI.jpg', N'Any', N'20', N'True')
  8. /** Update Version **/
  9. DELETE FROM Version
  10. INSERT INTO Version(VersionNumber) VALUES (N'01.10.00')
  11. END