存盤程序必須要創建在系統資料庫的master里
#from fhadmin.cn
create proc killspid (@dbname varchar(20))
as
begin
declare @sql nvarchar(500)
declare @spid int
set @sql='declare getspid cursor for select spid from sysprocesses where dbid=db_id('''+@dbname+''')'
exec (@sql)
open getspid
fetch next from getspid into @spid
while @@fetch_status <> -1
begin
exec('kill '+@spid)
fetch next from getspid into @spid
end
close getspid
deallocate getspid
end
代碼生成器: [正反雙向](單表、主表、明細表、樹形表,快速開發利器)+快速表單構建器
freemaker模版技術 ,0個代碼不用寫,生成完整的一個模塊,帶頁面、建表sql腳本、處理類、service等完整模塊
多資料源:(支持同時連接無數個資料庫,可以不同的模塊連接不同數的據庫)支持N個資料源
阿里資料庫連接池druid,安全權限框架 shiro(選單權限和按鈕權限), 快取框架 ehcache
代碼編輯器,在線模版編輯,仿開發工具編輯器
呼叫攝像頭拍照 自定義裁剪編輯頭像,頭像圖片色度調節
websocket 及時站內信并聲音提醒、實時在線管理、websocket及時重繪頁面(完勝ajax技術)
轉載請註明出處,本文鏈接:https://www.uj5u.com/shujuku/423481.html
標籤:SQL Server
上一篇:Mysql自序整理集
