惯性聚合 高效追踪和阅读你感兴趣的博客、新闻、科技资讯
阅读原文 在惯性聚合中打开

推荐订阅源

Hacker News: Ask HN
Hacker News: Ask HN
Recent Commits to openclaw:main
Recent Commits to openclaw:main
cs.CV updates on arXiv.org
cs.CV updates on arXiv.org
C
Check Point Blog
S
Security Affairs
Hacker News - Newest:
Hacker News - Newest: "LLM"
S
Secure Thoughts
Recorded Future
Recorded Future
cs.AI updates on arXiv.org
cs.AI updates on arXiv.org
T
The Blog of Author Tim Ferriss
B
Blog
C
Cybersecurity and Infrastructure Security Agency CISA
Google DeepMind News
Google DeepMind News
CTFtime.org: upcoming CTF events
CTFtime.org: upcoming CTF events
A
Arctic Wolf
T
The Exploit Database - CXSecurity.com
Stack Overflow Blog
Stack Overflow Blog
T
Threat Research - Cisco Blogs
GbyAI
GbyAI
AWS News Blog
AWS News Blog
MongoDB | Blog
MongoDB | Blog
Y
Y Combinator Blog
Google Online Security Blog
Google Online Security Blog
T
Troy Hunt's Blog
I
InfoQ
L
LINUX DO - 热门话题
WordPress大学
WordPress大学
C
Cisco Blogs
G
GRAHAM CLULEY
The Register - Security
The Register - Security
A
About on SuperTechFans
让小产品的独立变现更简单 - ezindie.com
让小产品的独立变现更简单 - ezindie.com
Schneier on Security
Schneier on Security
Project Zero
Project Zero
H
Hackread – Cybersecurity News, Data Breaches, AI and More
P
Privacy & Cybersecurity Law Blog
Cloudbric
Cloudbric
H
Hacker News: Front Page
小众软件
小众软件
雷峰网
雷峰网
The Hacker News
The Hacker News
www.infosecurity-magazine.com
www.infosecurity-magazine.com
T
Tor Project blog
博客园 - 聂微东
N
Netflix TechBlog - Medium
V
Vulnerabilities – Threatpost
The GitHub Blog
The GitHub Blog
腾讯CDC
P
Palo Alto Networks Blog
Scott Helme
Scott Helme

博客园 - yet

利用SQL2005的forxml以及反系列化去替代ORM? 怎样去获取文章简介 用自己的MVC框架 (小技巧)怎样有选择的去屏蔽验证控件。 高校软件杯作品:DreamChat[校园即时通] 梦凌NET期刊管理系统 一却都好像都在肢解着我 <远程教育系统>体系结构设计 协议分析[高校杯准备] 把.NET程序部署到没有安装.NET Framwork的机器上 项目打包时自定义安装属性,如数据库名等 自动安装SQL Server数据库 截系统热键 IP多播技术[为软件高校杯做准备] 自定义提供程序控件(续) 自定义提供程序控件 实现支持断点续传多线程下载的 Http Web 客户端工具类() 身份证验证算法 C#编写QQ接口软件--QQ协议篇
在制作打包程序的时候自动在用户计算机中还原SQL数据库
yet · 2005-08-16 · via 博客园 - yet

发布程序到已经有SQL环境的计算机时,自动使用SQLOsql来恢复指定的数据库到你的SQL ServerDate中。

首先,在c:\创建一个临时目录,例如c:\TempBD ,拷贝Osql.exe到目录下,拷贝你的数据库备份(TruckDB)到目录下;在目录下分别创建Restore.batRestore.txt文件,内容如下:

1.       Restore.bat文件内容:

osql  -E -S -i C:\TempDB\Restore.txt

2.       Restore.txt文件内容:

use master

if exists (select * from sysdevices where name='TruckDB')

       EXEC sp_dropdevice 'TruckDB'

Else

       EXEC sp_addumpdevice 'disk','TruckDB', 'C:\Program Files\Microsoft SQL Server\MSSQL\Data\TruckDB.mdf'

restore database TruckDB

from disk='c:\TempDB\TruckDB'

with replace

   其次,在你的工程中添加一个Installer Class:选中Project主工程,添加Installer Class,名称假定为installer1。选择instller1的代码页,添加下面的代码:

Public Overrides Sub Install(ByVal stateSaver As System.Collections.IDictionary)

'重写install方法

Dim file As System.IO.File

        If file.Exists("C:\Program Files\Microsoft SQL Server\MSSQL\Data\TruckDB_data.mdf") = True Then Exit Sub

        MyBase.Install(stateSaver)

        Dim CheckedDir As System.IO.Directory

        If CheckedDir.Exists("C:\Program Files\Microsoft SQL Server\MSSQL\Data") = False Then

            CheckedDir.CreateDirectory("C:\Program Files\Microsoft SQL Server\MSSQL\Data")

        End If

        Dim FullPath As String

        Dim Asm As System.Reflection.Assembly = System.Reflection.Assembly.GetExecutingAssembly()

        Dim strConfigLoc As String

        strConfigLoc = Asm.Location

        Dim strTemp As String

        strTemp = strConfigLoc

'提取安装路径

        strTemp = strTemp.Remove(strTemp.LastIndexOf("\"), Len(strTemp) - strTemp.LastIndexOf("\"))

        'Copy  DateBase to computer.

        If CreatDIR(strTemp) = False Then

'失败,反安装

Me.Uninstall(stateSaver)

Exit Sub

        Else

        End If

        If InstallDB(strTemp) = False Then

失败,反安装

Me.Uninstall(stateSaver)

Exit Sub

        Else

        End If

删除数据库临时文件

        DeleteDIR(c:\TempDB)

        DeleteDIR(strTemp + \TempDB)

End Sub

Public Overrides Sub Uninstall(ByVal stateSaver As System.Collections.Idictionary)

执行反安装

利用反射提取安装路径

        MyBase.Uninstall(stateSaver)

        Dim Asm As System.Reflection.Assembly = System.Reflection.Assembly.GetExecutingAssembly()

        Dim strConfigLoc As String

        strConfigLoc = Asm.Location

        Dim strTemp As String

        strTemp = strConfigLoc

        strTemp = strTemp.Remove(strTemp.LastIndexOf(\), Len(strTemp) strTemp.LastIndexOf(\))

删除数据库文件和临时文件

        DeleteDIR(strTemp + \TempDB)

        DeleteDIR(c:\TempDB)

End Sub

Private Function DeleteDIR(ByVal path As String) As Boolean

删除指定的文件夹

        Dim dir As System.IO.Directory

        If dir.Exists(path) = True Then dir.Delete(path, True)

End Function

Private Function CreatDIR(ByVal path As String) As Boolean

创建指定的文件夹

        Dim Files As System.IO.File

        Dim Dirs As System.IO.Directory

        Try

If Dirs.Exists(c:\TempDB) = False Then Dirs.CreateDirectory(c:\TempDB)

copy Creat DB files

CopyFile(path + \TempDB, C:\TempDB)

Return True

        Catch

Return False

        End Try

End Function

Private Sub CopyFile(ByVal SourceDirName As String, ByVal DestDirName As String)

copy指定的文件夹的所有文件到目标文件夹(单层)。

        Dim dir As System.IO.Directory

        Dim File As System.IO.File

        Dim sPath, oPath As String

        Dim I As Integer

        For I = 0 To dir.GetFiles(SourceDirName).Length 1

sPath = dir.GetFiles(SourceDirName).GetValue(i).ToString

oPath = Microsoft.VisualBasic.Right(sPath, Len(sPath) Len(SourceDirName))

File.Copy(sPath, DestDirName + oPath, True)

        Next

End Sub

Private Function InstallDB(ByVal path As String) As Boolean

安装数据库,调用自动批处理。

        'Dim CheckedDir As System.IO.Directory

        'If CheckedDir.Exists(C:\Program Files\Microsoft SQL Server\MSSQL\Data) = False Then

'CheckedDir.CreateDirectory(C:\Program Files\Microsoft SQL Server\MSSQL\Data)

        'End If

        Try

Shell(c:\TempDB\Restore.bat, AppWinStyle.Hide, True)

Catch

End Try

End Function

然后,在你的工程中添加一个安装工程,取名为MySetup1按照正常的步骤添加工程输出(Project Output),选择输出文件(primary output)和内容文件(content files)两项,再添加文件夹到application Folder,文件夹的Name为TempDB,再给文件夹TempDB添加文件:osql.exe,Restore.bat,Restore.txt,TruckDB(数据库文件)。设定你的文件夹的properties的AlwaysCreate为True。对你的Setup工程进行编译。

这时,生成的安装包,将会在安装完程序后,自动调用Installer类的方法,恢复你的TruckDB数据库。

注意,TruckDB在生成的时候,应该备份保存到“C:\Program Files\Microsoft SQL Server\MSSQL\Data\”下,便于恢复。