如何使用 C# 运行 sql 脚本
声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow
原文地址: http://stackoverflow.com/questions/2250297/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me):
StackOverFlow
How to run a sql script using C#
提问by HotTester
I have a sql script to create a new database which i need to create when our product is installed. For this i need to fire the script using c#. DB is sql-server 2005 express. Plz help....
我有一个 sql 脚本来创建一个新的数据库,我需要在安装我们的产品时创建它。为此,我需要使用 c# 来触发脚本。DB 是 sql-server 2005 express。请帮忙....
The sql script is as follows:
sql脚本如下:
USE [master]
GO
/****** Object: Database [Jai] Script Date: 02/12/2010 11:01:25 ******/
CREATE DATABASE [Jai] ON PRIMARY
( NAME = N'Jai', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\Jai.mdf' , SIZE = 3072KB , MAXSIZE = UNLIMITED, FILEGROWTH = 1024KB )
LOG ON
( NAME = N'Jai_log', FILENAME = N'C:\Program Files\Microsoft SQL Server\MSSQL.1\MSSQL\DATA\Jai_log.ldf' , SIZE = 1024KB , MAXSIZE = 2048GB , FILEGROWTH = 10%)
COLLATE SQL_Latin1_General_CP1_CI_AS
GO
EXEC dbo.sp_dbcmptlevel @dbname=N'Jai', @new_cmptlevel=90
GO
IF (1 = FULLTEXTSERVICEPROPERTY('IsFullTextInstalled'))
begin
EXEC [Jai].[dbo].[sp_fulltext_database] @action = 'disable'
end
GO
ALTER DATABASE [Jai] SET ANSI_NULL_DEFAULT OFF
GO
ALTER DATABASE [Jai] SET ANSI_NULLS OFF
GO
ALTER DATABASE [Jai] SET ANSI_PADDING OFF
GO
ALTER DATABASE [Jai] SET ANSI_WARNINGS OFF
GO
ALTER DATABASE [Jai] SET ARITHABORT OFF
GO
ALTER DATABASE [Jai] SET AUTO_CLOSE OFF
GO
ALTER DATABASE [Jai] SET AUTO_CREATE_STATISTICS ON
GO
ALTER DATABASE [Jai] SET AUTO_SHRINK OFF
GO
ALTER DATABASE [Jai] SET AUTO_UPDATE_STATISTICS ON
GO
ALTER DATABASE [Jai] SET CURSOR_CLOSE_ON_COMMIT OFF
GO
ALTER DATABASE [Jai] SET CURSOR_DEFAULT GLOBAL
GO
ALTER DATABASE [Jai] SET CONCAT_NULL_YIELDS_NULL OFF
GO
ALTER DATABASE [Jai] SET NUMERIC_ROUNDABORT OFF
GO
ALTER DATABASE [Jai] SET QUOTED_IDENTIFIER OFF
GO
ALTER DATABASE [Jai] SET RECURSIVE_TRIGGERS OFF
GO
ALTER DATABASE [Jai] SET ENABLE_BROKER
GO
ALTER DATABASE [Jai] SET AUTO_UPDATE_STATISTICS_ASYNC OFF
GO
ALTER DATABASE [Jai] SET DATE_CORRELATION_OPTIMIZATION OFF
GO
ALTER DATABASE [Jai] SET TRUSTWORTHY OFF
GO
ALTER DATABASE [Jai] SET ALLOW_SNAPSHOT_ISOLATION OFF
GO
ALTER DATABASE [Jai] SET PARAMETERIZATION SIMPLE
GO
ALTER DATABASE [Jai] SET READ_WRITE
GO
ALTER DATABASE [Jai] SET RECOVERY FULL
GO
ALTER DATABASE [Jai] SET MULTI_USER
GO
ALTER DATABASE [Jai] SET PAGE_VERIFY CHECKSUM
GO
ALTER DATABASE [Jai] SET DB_CHAINING OFF
采纳答案by Adriaan Stander
回答by Don
Hereis a post from MSDN explaining how to do it using SMO:
这是 MSDN 上的一篇文章,解释了如何使用 SMO 做到这一点:
using System.Data.SqlClient;
using System.IO;
using Microsoft.SqlServer.Management.Common;
using Microsoft.SqlServer.Management.Smo;
namespace ConsoleApplication1
{
class Program
{
static void Main(string[] args)
{
string sqlConnectionString = "Data Source=(local);Initial Catalog=AdventureWorks;Integrated Security=True";
FileInfo file = new FileInfo("C:\myscript.sql");
string script = file.OpenText().ReadToEnd();
SqlConnection conn = new SqlConnection(sqlConnectionString);
Server server = new Server(new ServerConnection(conn));
server.ConnectionContext.ExecuteNonQuery(script);
}
}
}
回答by Rune Grimstad
When I need to run sql scripts containing GO statements I usually read the entire file into a string and split it into a string array using GO as the delimiter.
当我需要运行包含 GO 语句的 sql 脚本时,我通常将整个文件读入一个字符串,并使用 GO 作为分隔符将其拆分为一个字符串数组。
I then connect to the database and run each statement in order.
然后我连接到数据库并按顺序运行每个语句。
It's quite easy and works well. Just make sure to keep your database connection open while running all statements. Also you may consider running them all in a transaction.
这很容易并且运行良好。只需确保在运行所有语句时保持数据库连接打开。你也可以考虑在一个事务中运行它们。