九色国产,午夜在线视频,新黄色网址,九九色综合,天天做夜夜做久久做狠狠,天天躁夜夜躁狠狠躁2021a,久久不卡一区二区三区

打開APP
userphoto
未登錄

開通VIP,暢享免費(fèi)電子書等14項超值服

開通VIP
INI文件格式及其操作代碼

INI文件格式及其操作代碼

INI文件格式如下: 
[Database] 
server=wlq 
database=mydatabase 
uid=sa 
pwd=123456

說明:(有4個key) 
Section為:Database 
Key為:server database uid pwd

/***************代碼******************/ 
using System; 
using System.IO; 
using System.Runtime.InteropServices; 
using System.Text;


namespace Sx_Mdi 
{

/// <summary> 
/// Summary description for Class1. 
/// </summary> 
public class IniFile 

//文件INI名稱 
public string Path;

////聲明讀寫INI文件的API函數(shù) 
[DllImport("kernel32")]

private static extern long WritePrivateProfileString(string section,string key,string val,string filePath);


[DllImport("kernel32")]

private static extern int GetPrivateProfileString(string section,string key,string def,StringBuilder retVal,int size,string filePath);


//類的構(gòu)造函數(shù),傳遞INI文件名 
public IniFile(string inipath) 

// 
// TODO: Add constructor logic here 
// 
Path = inipath; 
}

//寫INI文件 
public void IniWriteValue(string Section,string Key,string Value) 

WritePrivateProfileString(Section,Key,Value,this.Path);

}

//讀取INI文件指定 
public string IniReadValue(string Section,string Key) 

StringBuilder temp = new StringBuilder(255); 
int i = GetPrivateProfileString(Section,Key,"",temp,255,this.Path); 
return temp.ToString();

}



}

操作范例:

public static SqlConnection MyConnection() 

string sPath; 
string ServerName,userId,sPwd,DataName;

sPath = GetPath(); 
IniFile ini = new IniFile(sPath); 
ServerName = ini.IniReadValue ("Database","server"); 
userId = ini.IniReadValue ("Database","uid"); 
sPwd = ini.IniReadValue ("Database","pwd"); 
DataName = ini.IniReadValue ("Database","database"); 
string strSql = "server =" + ServerName+";uid ="+ userId +";pwd =;database ="+ DataName; 
    SqlConnection myConn=new SqlConnection(strSql); 
    return myConn; 
}

/***************代碼******************/

本站僅提供存儲服務(wù),所有內(nèi)容均由用戶發(fā)布,如發(fā)現(xiàn)有害或侵權(quán)內(nèi)容,請點(diǎn)擊舉報。
打開APP,閱讀全文并永久保存 查看更多類似文章
猜你喜歡
類似文章
C#實(shí)現(xiàn)對SQL數(shù)據(jù)庫中的表的查詢、添加、修改、刪除數(shù)據(jù)
c#中如何將數(shù)據(jù)庫中一個表的某列顯示在組合框控件的下拉菜單中?
ASP.NET下備份與還原數(shù)據(jù)庫代碼
SqlConnection類
「筆記」使用ADO.NET訪問數(shù)據(jù)庫,進(jìn)行增刪改查
數(shù)據(jù)庫連接文件
更多類似文章 >>
生活服務(wù)
熱點(diǎn)新聞
分享 收藏 導(dǎo)長圖 關(guān)注 下載文章
綁定賬號成功
后續(xù)可登錄賬號暢享VIP特權(quán)!
如果VIP功能使用有故障,
可點(diǎn)擊這里聯(lián)系客服!

聯(lián)系客服