C#中commandType中集合Parameters怎么用,它里边的参数是什么意思
1个回答
展开全部
如下面的程序:
string strConn="server=(.);database=db;uid=sa;pwd=sa;";
SqlCommand cmd = new SqlCommand();
cmd.Connection = new SqlConnection();
cmd.Connection.ConnectionString=strConn;
//cmd.CommandText = "select * from table1";
// cmd.CommandType = System.Data.CommandType.Text;//sql 语句
cmd.CommandText = "存储过程名";
cmd.CommandType = System.Data.CommandType.StoredProcedure;//存储过程
// cmd.CommandText = "表名称";
// cmd.CommandType = System.Data.CommandType.TableDirect;//表名称
cmd.Connection.Open();
cmd.ExecuteNonQuery();
cmd.Connection.Close();
(1)System.Data.CommandType.Text表示要执行的是sql语句,比如:select * from table1
(2)System.Data.CommandType.StoredProcedure表示要执行的是存储过程,此 时,cmd.CommandText 的值应该是存储过程的名称。
(3)System.Data.CommandType.TableDirect表示要执行的是表,此时,cmd.CommandText 的值应该是要查询表的的名称。查询结果返回的是整个表。
string strConn="server=(.);database=db;uid=sa;pwd=sa;";
SqlCommand cmd = new SqlCommand();
cmd.Connection = new SqlConnection();
cmd.Connection.ConnectionString=strConn;
//cmd.CommandText = "select * from table1";
// cmd.CommandType = System.Data.CommandType.Text;//sql 语句
cmd.CommandText = "存储过程名";
cmd.CommandType = System.Data.CommandType.StoredProcedure;//存储过程
// cmd.CommandText = "表名称";
// cmd.CommandType = System.Data.CommandType.TableDirect;//表名称
cmd.Connection.Open();
cmd.ExecuteNonQuery();
cmd.Connection.Close();
(1)System.Data.CommandType.Text表示要执行的是sql语句,比如:select * from table1
(2)System.Data.CommandType.StoredProcedure表示要执行的是存储过程,此 时,cmd.CommandText 的值应该是存储过程的名称。
(3)System.Data.CommandType.TableDirect表示要执行的是表,此时,cmd.CommandText 的值应该是要查询表的的名称。查询结果返回的是整个表。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询