当前位置:首页 > 在C#中使用存储过程

在C#中使用存储过程

点击次数:964  更新日期:2010-12-28
\n

本文以Sql Server2000为例,示例数据库为china,表为test,来说明以C#中使用sql存储过程的方法。

一、test表的创建sql语句:

\n


\n

create table test55
(
uid int identity(1,1),
class1 varchar(20),
class2 varchar(20),
uname varchar(20),
birth smalldatetime,
meno varchar(50)
)


\n

alter table test55
add constraint primary_id primary key(uid)

\n