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
{
}
}
}
}
查看全文
相关阅读:
关于MOTO E2
Visual Studio 2008 SDK 1.1 Beta 发布
开始了新的工作
C# 2.0 的"语法多义性"
最近画的框架草图
SQL数据库向ORACLE迁移注意事项
C#中很多新的特性,提供了更好的“即兴编程”的能力。
看了点lua相关的东西,有点想法不知能否实现?先记下来慢慢思考。
读《企业应用架框模式》
porting cinvoke1.0 to E2 (armlinux)
原文地址:https://www.cnblogs.com/ghd258/p/262046.html
最新文章
POJ1017 添格子
NYOJ_195
nyoj171 吃虫子 动态
HDOJ—3339 最短路+背包
nyoj16 矩形嵌套 记忆搜索+动态 数组引用
HDOJ_2159 二维完全背包
HDOJ_2602 0/1背包问题
NYOJ61 传纸条 双线动态
HDOJ—1050 移动桌子 贪心
Jenkins自动化部署.netcore程序
热门文章
代码的性能差异
向 Miguel de Icaza 致敬!
这可能是在锦程公司写的最后一篇BLOG了
ARM C内嵌asm写法
加几张月亮照片
基于WPF构建CAD真是太容易了!
mono,实现了我的linux程序开发的梦想!
D82F1000望远镜DIY
使用Linq重新设计的用户权限模型
monodevelop 0.14
Copyright © 2011-2022 走看看