zoukankan
html css js c++ java
[cs_InkData_Get]//[cs_InkData_Update]///cs_Licenses_Get///cs_Licenses_Update
cs_Licenses_Update
ALTER
PROCEDURE
dbo.cs_Licenses_Update
@LicenseID
uniqueidentifier
,
@LicenseType
nvarchar
(
50
),
@LicenseValue
ntext
AS
if
exists
(
select
LicenseType
from
cs_Licenses
where
LicenseType
=
@LicenseType
)
/**/
/*
如果存在此许可类型
*/
begin
delete
from
cs_Licenses
where
LicenseType
=
@LicenseType
end
/**/
/*
删除
*/
insert
into
cs_Licenses (LicenseID, LicenseType, LicenseValue)
values
(
@LicenseID
,
@LicenseType
,
@LicenseValue
)
/**/
/*
插入许可
*/
cs_Licenses_Get
ALTER
PROCEDURE
dbo.cs_Licenses_Get
AS
SELECT
*
FROM
cs_Licenses
/**/
/*
查询全部
*/
[cs_InkData_Update]
ALTER
Proc
[
dbo
]
.
[
cs_InkData_Update
]
(
@SectionID
int
,
@SettingsID
int
,
@Ink
NTEXT
,
@DateUpdated
datetime
,
@InkID
int
)
as
update
cs_InkData
SET
Ink
=
@Ink
,
DateUpdated
=
@DateUpdated
where
SettingsID
=
@SettingsID
and
SectionID
=
@SectionID
and
InkID
=
@InkID
/**/
/*
更新
*/
[cs_InkData_Get]
ALTER
Proc
[
dbo
]
.
[
cs_InkData_Get
]
(
@InkID
int
,
@SettingsID
int
)
as
Select
InkID, Ink, UserID, SectionID, SettingsID, DateUpdated, ApplicationType
FROM
cs_InkData
where
InkID
=
@InkID
and
SettingsID
=
@SettingsID
/**/
/*
获取数据
*/
查看全文
相关阅读:
SpringBoot整合ActiveMQ同时支持P2P和发布订阅模式(三)
SpringBoot整合ActiveMQ的publish/subscribe发布订阅模式(二)
Windows启动ActiveMQ报Wrapper Stopped错误
IDEA从远程仓库克隆项目
Git的安装
IDEA上传项目到使用github上
Mybaits的逆向工程
posman测试接口需要登录验证的使用
SSM整合SpringSecurity
SpringBoot整合MongoDB的连接用户名和密码问题
原文地址:https://www.cnblogs.com/ruanbl/p/509756.html
最新文章
JavaScript之new与不new的区别
ES6——变量的解构赋值
class 基本语法(JavaScript ES6)
jQuery入口函数与JavaScript入口函数
第一个java程序
java初始配置
基本dos命令
markdown学习
计算机怎样识别人们的输入?
python3用pygame实现播放音乐文件
热门文章
linux启动引导
grub2详解
CDN
CentOS7使用firewall-cmd打开关闭防火墙与端口
linux命令详解:pgrep命令
linux中SET位权限和粘滞位权限详解
网络服务-SAMBA(文件服务共享)
linux setup的安装
LVM逻辑卷
计算机网络--ARP协议
Copyright © 2011-2022 走看看