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
{
}
}
}
}
查看全文
相关阅读:
centos修改主机名 root@后面的名字
Postgresql插入或更新操作upsert
postgresql中使用distinct去重
Docker permission denied while trying to connect to the Docker daemon socket
zookeeper三节点集群安装记录
使用Jenkins pipeline流水线构建docker镜像和发布
使用wrk进行压力测试
Springboot配置端口号
intellij idea使用maven本地仓库及修改本地仓库路径
idea 多模块项目
原文地址:https://www.cnblogs.com/ghd258/p/262046.html
最新文章
【转】惰性求值
【转】函数式语言的宗教
【转】爱因斯坦对美国的第一印象
【转】Lisp 已死,Lisp 万岁!
【转】论对东西的崇拜
【转】怎样写一个解释器
王垠的过去和现状
神经网络入门
蒙特卡罗方法入门
理解矩阵乘法
热门文章
区块链入门教程
汇编语言入门教程
不要使用Integer做HashMap的key,尤其在json序列化的时候
Docker国内镜像source
Docker构建YApi镜像, Docker安装YApi, Docker部署YApi
docker安装mongodb并备份
理解Docker镜像分层
Docker学习笔记1 -- 刚入手docker时的几个命令
sql格式化并高亮
集群安装Java环境
Copyright © 2011-2022 走看看