📄 cs_style_createupdatedelete.prc
字号:
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
if exists (select * from dbo.sysobjects where id = object_id(N'[dbo].[cs_Style_CreateUpdateDelete]') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
drop procedure [dbo].[cs_Style_CreateUpdateDelete]
GO
create proc [dbo].cs_Style_CreateUpdateDelete
(
@StyleID int out
, @DeleteStyle bit = 0
, @StyleName varchar(30)
, @StyleSheetTemplate varchar(30)
, @BodyBackgroundColor int
, @BodyTextColor int
, @LinkVisited int
, @LinkHover int
, @LinkActive int
, @RowColorPrimary int
, @RowColorSecondary int
, @RowColorTertiary int
, @RowClassPrimary varchar(30)
, @RowClassSecondary varchar(30)
, @RowClassTertiary varchar(30)
, @HeaderColorPrimary int
, @HeaderColorSecondary int
, @HeaderColorTertiary int
, @HeaderStylePrimary varchar(30)
, @HeaderStyleSecondary varchar(30)
, @HeaderStyleTertiary varchar(30)
, @CellColorPrimary int
, @CellColorSecondary int
, @CellColorTertiary int
, @CellClassPrimary varchar(30)
, @CellClassSecondary varchar(30)
, @CellClassTertiary varchar(30)
, @FontFacePrimary varchar(30)
, @FontFaceSecondary varchar(30)
, @FontFaceTertiary varchar(30)
, @FontSizePrimary smallint
, @FontSizeSecondary smallint
, @FontSizeTertiary smallint
, @FontColorPrimary int
, @FontColorSecondary int
, @FontColorTertiary int
, @SpanClassPrimary varchar(30)
, @SpanClassSecondary varchar(30)
, @SpanClassTertiary varchar(30)
, @SettingsID int
)
AS
SET Transaction Isolation Level Read UNCOMMITTED
IF( @DeleteStyle = 1 )
BEGIN
DELETE cs_Styles
WHERE
StyleID = @StyleID and SettingsID = @SettingsID
RETURN
END
IF( @StyleID > 0 )
BEGIN
UPDATE cs_Styles SET
StyleName = @StyleName
, StyleSheetTemplate = @StyleSheetTemplate
, BodyBackgroundColor = @BodyBackgroundColor
, BodyTextColor = @BodyTextColor
, LinkVisited = @LinkVisited
, LinkHover = @LinkHover
, LinkActive = @LinkActive
, RowColorPrimary = @RowColorPrimary
, RowColorSecondary = @RowColorSecondary
, RowColorTertiary = @RowColorTertiary
, RowClassPrimary = @RowClassPrimary
, RowClassSecondary = @RowClassSecondary
, RowClassTertiary = @RowClassTertiary
, HeaderColorPrimary = @HeaderColorPrimary
, HeaderColorSecondary = @HeaderColorSecondary
, HeaderColorTertiary = @HeaderColorTertiary
, HeaderStylePrimary = @HeaderStylePrimary
, HeaderStyleSecondary = @HeaderStyleSecondary
, HeaderStyleTertiary = @HeaderStyleTertiary
, CellColorPrimary = @CellColorPrimary
, CellColorSecondary = @CellColorSecondary
, CellColorTertiary = @CellColorTertiary
, CellClassPrimary = @CellClassPrimary
, CellClassSecondary = @CellClassSecondary
, CellClassTertiary = @CellClassTertiary
, FontFacePrimary = @FontFacePrimary
, FontFaceSecondary = @FontFaceSecondary
, FontFaceTertiary = @FontFaceTertiary
, FontSizePrimary = @FontSizePrimary
, FontSizeSecondary = @FontSizeSecondary
, FontSizeTertiary = @FontSizeTertiary
, FontColorPrimary = @FontColorPrimary
, FontColorSecondary = @FontColorSecondary
, FontColorTertiary = @FontColorTertiary
, SpanClassPrimary = @SpanClassPrimary
, SpanClassSecondary = @SpanClassSecondary
, SpanClassTertiary = @SpanClassTertiary
WHERE
StyleID = @StyleID and SettingsID = @SettingsID
END
ELSE
BEGIN
INSERT INTO cs_Styles (
StyleName , StyleSheetTemplate , BodyBackgroundColor , BodyTextColor
, LinkVisited , LinkHover , LinkActive , RowColorPrimary
, RowColorSecondary , RowColorTertiary , RowClassPrimary , RowClassSecondary
, RowClassTertiary , HeaderColorPrimary , HeaderColorSecondary , HeaderColorTertiary
, HeaderStylePrimary , HeaderStyleSecondary , HeaderStyleTertiary , CellColorPrimary
, CellColorSecondary , CellColorTertiary , CellClassPrimary , CellClassSecondary
, CellClassTertiary , FontFacePrimary , FontFaceSecondary , FontFaceTertiary
, FontSizePrimary , FontSizeSecondary , FontSizeTertiary , FontColorPrimary
, FontColorSecondary , FontColorTertiary , SpanClassPrimary , SpanClassSecondary
, SpanClassTertiary, SettingsID
) VALUES (
@StyleName , @StyleSheetTemplate , @BodyBackgroundColor , @BodyTextColor , @LinkVisited , @LinkHover , @LinkActive , @RowColorPrimary
, @RowColorSecondary , @RowColorTertiary , @RowClassPrimary , @RowClassSecondary
, @RowClassTertiary , @HeaderColorPrimary , @HeaderColorSecondary , @HeaderColorTertiary
, @HeaderStylePrimary , @HeaderStyleSecondary , @HeaderStyleTertiary , @CellColorPrimary
, @CellColorSecondary , @CellColorTertiary , @CellClassPrimary , @CellClassSecondary
, @CellClassTertiary , @FontFacePrimary , @FontFaceSecondary , @FontFaceTertiary
, @FontSizePrimary , @FontSizeSecondary , @FontSizeTertiary , @FontColorPrimary
, @FontColorSecondary , @FontColorTertiary , @SpanClassPrimary , @SpanClassSecondary
, @SpanClassTertiary, @SettingsID
)
SELECT @StyleID = @@IDENTITY
END
RETURN
GO
SET QUOTED_IDENTIFIER OFF
GO
SET ANSI_NULLS ON
GO
grant execute on [dbo].[cs_Style_CreateUpdateDelete] to public
go
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -