如何解决存储过程中的架构
你可以做
public static DataTable SchemaReader(string tableName)
{
string sql = "MySP";//replace this with your store procedure name
conn.open();
sqlCommand cmd = new sqlCommand(sql, conn);
cmd.CommandType = CommandType.StoredProcedure;
sqlDataReader reader = cmd.ExecuteReader();
DataTable schema = reader.GetSchemaTable();
reader.Close();
conn.Close();
return schema;
}
希望这个帮助
解决方法
我有一个过程,我想阅读该过程的模式。要检索视图架构,请使用此处显示的查询。我想以同样的方式获取存储过程的模式。如何获得?请显示一些语法。
public static DataTable SchemaReader(string tableName)
{
string sql = string.Format("Select * from {0}",tableName);
conn.Open();
SqlCommand cmd = new SqlCommand(sql,conn);
cmd.CommandType = CommandType.Text;
SqlDataReader reader = cmd.ExecuteReader();
DataTable schema = reader.GetSchemaTable();
reader.Close();
conn.Close();
return schema;
}
如果有任何查询请先谢谢。
版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。