• VSTS 2005 写SQL Server存储过程基础 (C#)


    VSTS 2005 写SQL Server存储过程(Procedue)
    1、新建一个Sql Server Project
    2、写存储过程,C#示意代码如下:
     1[SqlProcedure]
     2public static void BackupDatabase(string strDatabaseName, string strFilePath)
     3{
     4 using(SqlConnection conn = new SqlConnection("context connection=true"))
     5 {
     6  try
     7  {
     8   // Procedure here.  e.g.
     9   // string strSQLCmd = "your command here";
    10   // conn.Open();
    11   // SqlCommand cmd = new SqlCommand(strSQLCmd, conn);
    12   // cmd.ExecuteNonQuery();
    13  }

    14  catch (Exception ex)
    15  {
    16   // Exception here
    17  }

    18  finally
    19  {
    20   conn.Close();
    21  }

    22 }

    23}
    3、配置该Project的DataBase连接属性
    4、部署(Deploy):项目点右键,选择Deploy
    5、到SqlServer中看看把,已经有你的Procedue了。
  • 相关阅读:
    设计模式六大原则
    .net Stream篇(七)
    .net Stream篇(六)
    .net Stream篇(五)
    .net Stream篇(四)
    Leetcode 18
    Leetcode 16
    Leetcode 15
    Leetcode 12
    Leetcode 9
  • 原文地址:https://www.cnblogs.com/skywind/p/661180.html
Copyright © 2020-2023  润新知