readme.txt
来自「ConnectionString.rar 数据库连接工具测试」· 文本 代码 · 共 30 行
TXT
30 行
ConnectionString.exe
---------------------------------------------------------------------------
FUNC: generate connection string, and encode them using DES64 arithmetic.
AUTH: kevin cheng
MAIL: surfsky@sina.com
DATE: 2005-11
---------------------------------------------------------------------------
1. How to add plugins to generate more connection strings :
(1)The plugin control must complete the following interface:
public interface IConnectionString
{
string ConnectionString {get;}
}
(2)Add node into cfg.xml file. The <ConnPanelCfg> node may be look like:
<ConnPanelCfg>
<Name>Oracle</Name>
<AssemblyFile>ConnectionString.exe</AssemblyFile>
<TypeName>ConnectionString.ConnOracle</TypeName>
</ConnPanelCfg>
2. You can decode DES file with this code:
using Tool.Security;
string str = Tool.Security.Security.DecryptDesF2S(fileIn, key);
3. This software is free to use and distribute. However, please lease these file unchanged.
4. Contact with me if you have any question, or publish your plugins if you will.
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?