readme.txt

来自「关于SQL SERVER 的加密和解密包」· 文本 代码 · 共 51 行

TXT
51
字号
=========================================================================
    EXTENDED STORED PROCEDURE : xp_blowfishencrypt Project Overview
========================================================================


AppWizard has created xp_blowfishencrypt.dll for you.  

This file contains a summary of what you will find in each of the files that
make up your xp_blowfishencrypt application.

xp_blowfishencrypt.vcproj
    This is the main project file for VC++ projects generated using an Application Wizard. 
    It contains information about the version of Visual C++ that generated the file, and 
    information about the platforms, configurations, and project features selected with the
    Application Wizard.

xp_blowfishencrypt.cpp
    This is the main dll source file.

proc.cpp
    This file contains the stored procedure xp_proc

/////////////////////////////////////////////////////////////////////////////
Other standard files:

StdAfx.h, StdAfx.cpp
    These files are used to build a precompiled header (PCH) file
    named xp_blowfishencrypt.pch and a precompiled types file named StdAfx.obj.


/////////////////////////////////////////////////////////////////////////////
Other notes:

After completing this Wizard, copy the xp_blowfishencrypt.dll over to your SQL Server 
\Binn directory.

Add your new Extended Stored Procedure from a Visual Studio Data Project, 
or using the SQL Server Enterprise Manager, or by executing the following 
SQL command:
  sp_addextendedproc 'xp_proc', 'xp_blowfishencrypt.DLL'

You may drop the extended stored procedure by using the SQL command:
  sp_dropextendedproc 'xp_proc'

You may release the DLL from the Server (to delete or replace the file), by 
using the SQL command:
  DBCC xp_proc(FREE)


/////////////////////////////////////////////////////////////////////////////

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?