标签:
USE WFC_DB
GO
create table Students
(
Id int primary key IDENTITY(1,1) not null,
Name varchar(255),
Age int,
Score int
)
GO
insert into Students values(‘cheng‘, 10, 60)
insert into Students values(‘liu‘, 11, 80)
http://www.cnblogs.com/stone_w/archive/2011/09/15/2177830.html
1、注意xml文件,添加注释
2、config文件,程序集,报错
3、
标签:
原文地址:http://www.cnblogs.com/MattCheng/p/4619432.html