zoukankan
html css js c++ java
安装程序自动安装数据库
添加新项中添加安装程序类
using
System;
using
System.Collections;
using
System.ComponentModel;
using
System.Configuration.Install;
using
System.IO;
using
System.Data.SqlClient;
using
System.Reflection;
namespace
DBCustomAction
{
/**/
///
<summary>
///
DBCustomAction 的摘要说明。
///
</summary>
[RunInstaller(
true
)]
public
class
DBCustomAction : System.Configuration.Install.Installer
{
/**/
///
<summary>
///
必需的设计器变量。
///
</summary>
private
System.ComponentModel.Container components
=
null
;
private
string
strPass
=
""
;
public
DBCustomAction()
{
//
该调用是设计器所必需的。
InitializeComponent();
//
TODO: 在 InitComponent 调用后添加任何初始化
}
Component Designer generated code
#region
Component Designer generated code
/**/
///
<summary>
///
设计器支持所需的方法 - 不要使用代码编辑器修改
///
此方法的内容。
///
</summary>
private
void
InitializeComponent()
{
}
#endregion
public
override
void
Install(System.Collections.IDictionary stateSaver)
{
//
入口
strPass
=
this
.Context.Parameters[
"
strPass
"
];
AddDBTable(
"
RequestSys
"
);
//
RequestSys为数据库名称
}
private
string
GetSql(
string
strName)
{
try
{
//
' Get the current assembly.
Assembly Asm
=
Assembly.GetExecutingAssembly();
//
Resources are named using a fully qualified name
Stream strm
=
Asm.GetManifestResourceStream(Asm.GetName().Name
+
"
.
"
+
strName);
//
Read the contents of the embedded file.
StreamReader reader
=
new
StreamReader(strm);
//
,System.Text.Encoding.Unicode);
return
reader.ReadToEnd();
}
catch
{
return
null
;
}
}
private
void
ExecuteSql(
string
DatabaseName ,
string
Sql)
{
SqlConnection sqlConnection1
=
new
SqlConnection(
"
user id=sa;password=
"
+
strPass
+
"
;database=master;server=(local)
"
) ;
SqlCommand Command
=
new
SqlCommand(Sql, sqlConnection1);
Command.Connection.Open();
Command.Connection.ChangeDatabase(DatabaseName);
try
{
Command.ExecuteNonQuery();
}
finally
{
//
Finally, blocks are a great way to ensure that the connection
Command.Connection.Close();
}
}
protected
void
AddDBTable(
string
strDBName )
{
try
{
//
Create the database.
ExecuteSql(
"
master
"
,
"
CREATE DATABASE
"
+
strDBName);
//
Create the tables.
ExecuteSql(strDBName, GetSql(
"
sql.txt
"
));
}
catch
{
}
}
}
}
查看全文
相关阅读:
《修改代码的艺术》读书笔记
《软件架构师的12项修炼》阅读笔记2
《软件架构师的12项修炼》阅读笔记1
python 包
《编程珠玑》阅读笔记1
Darknet和YOLO的区别和关系
darknet
yolov3
软件质量属性
酷客 机器学习十讲(一)机器学习介绍
原文地址:https://www.cnblogs.com/ghd258/p/262046.html
最新文章
web实训项目(快递e栈)-----03api文档编写
web实训项目(快递e栈)-----02编写mvc框架
web实训项目(快递e栈)-----01项目概述
设置火狐浏览器不缓存js与html,便于开发调试(火狐浏览器默认缓存js与html,导致开发调试带来很多不便)
数据库(单表查询,多表查询,子查询)
详细:MVC开发模式(代码示例)
详细:MVC和三层框架(概念)
两个不同版本的tomcat,在一台电脑上共存的相关配置
GitHub上面建立个人主页
修改代码的艺术观后感3
热门文章
修改代码的艺术读后感2
修改代码的艺术读后感1
架构师是如何炼成的-阅读笔记5
架构师是如何炼成的-阅读笔记4
架构师是如何炼成的-阅读笔记3
架构师是如何炼成的-阅读笔记2
架构师是如何炼成的-阅读笔记1
以《淘宝网》为例,描绘质量属性的六个 常见属性场景
pip 源
javaee学习构建spring框架
Copyright © 2011-2022 走看看