日期:2014-05-17 浏览次数:20928 次
[DatabaseSetForF6]
serverForF6=
databaseForF6=
usernameForF6=
passwordForF6=
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.IO;
namespace F6
{
class SQLForF6
{
static string Current = Directory.GetCurrentDirectory();
static INI ini = new INI(Current + "/database.ini");//读取ini文件
//从ini取数据库配置参数,并分别赋予变量
static string serverForF6 = ini.ReadValue("DatabaseSetForF6", "serverForF6");
static string databaseForF6 = ini.ReadValue("DatabaseSetForF6", "databaseForF6");
static string usernameForF6 = ini.ReadValue("DatabaseSetForF6","usernameForF6");
static string passwordForF6 = ini.ReadValue("DatabaseSetForF6", "passwordForF6");
//对取出的数据库配置参数进行解密
static string serverNotepad = Crypt.Decode(serverForF6);
static string databaseNotepad = Crypt.Decode(databaseForF6);
static string usernameNotepad = Crypt.Decode(usernameForF6);
static string passwordNotepad = Crypt.Decode(passwordForF6);
//解密后,形成连接字符串
public static string conStr = "server=" + serverNotepad + ";database=" + databaseNotepad + ";uid=" + usernameNotepad + ";pwd=" + passwordNotepad + ";Asynchronous Processing=True;";
}
}