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
{
}
}
}
}
查看全文
相关阅读:
Menu-actionBarMenu字体颜色修改
actionBarTab-actionBarTab自定义 布局没法改变其中字体相对中间的位置
Funui-overlay 如何添加theme 的 overlay
java进阶——反射(Reflect)
java工具类学习整理——集合
Java实例练习——java实现自动生成长度为10以内的随机字符串(可用于生成随机密码)
打通Java与MySQL的桥梁——jdbc
SQL数据库操作整理
PhpStorm 4.0 & 5.0 部署本地Web应用
PhpStorm 4.0 & 5.0 部署本地Web应用
原文地址:https://www.cnblogs.com/ghd258/p/262046.html
最新文章
标准C程序设计七---101
标准C程序设计七---100
标准C程序设计七---77
标准C程序设计七---76
标准C程序设计七---75
标准C程序设计七---74
标准C程序设计七---73
标准C程序设计七---72
标准C程序设计七---71
标准C程序设计七---70
热门文章
标准C程序设计七---67
标准C程序设计七---66
标准C程序设计七---65
标准C程序设计七---64
redmine-bug 问题修改流程
animation- 动画效果实现(xml形式实现)
TextView- 内容过长省略号设定
TextView -无法调节字体、边框的距离
intent- 启动其他应用
checkbox-padding 调整checkbox字体跟图标距离
Copyright © 2011-2022 走看看