added csharp, sql snippets from users

This commit is contained in:
Zhang Chiyuan
2008-09-10 11:56:57 +00:00
parent bfe0255fd1
commit 0732cfc7e6
21 changed files with 177 additions and 0 deletions

View File

@@ -0,0 +1,10 @@
#contributor : Alejandro Espinoza Esparza <aespinoza@structum.com.mx>
#name : create table ...
# --
CREATE TABLE [${1:dbo}].[${2:TableName}]
(
${3:Id} ${4:INT IDENTITY(1,1)} ${5:NOT NULL}
$0
CONSTRAINT [${6:PK_}] PRIMARY KEY ${7:CLUSTERED} ([$3])
)
GO