這個是匯出資料的類。
特別說明:匯出時需要有乙個只有一行標題列名行的excel檔案。
public class cexcelwrite
",destfilename);
string commstr = "";
string commstr1 = "";
m_oleconn = new oledbconnection(connstr);
m_oleconn.open();
m_olecomm=new oledbcommand();
m_olecomm.connection = m_oleconn;
commstr = "insert into [sheet1$](";
commstr1 = "values(";
for (int i = 1; i <= colcount; i++)
}commstr += ")";
commstr1 += ")";
m_olecomm.commandtext = commstr + commstr1;
for (int i = 1; i <= colcount; i++)
m_olecomm.parameters.add("@col" + i.tostring(), oledbtype.varchar, 250);
}///
/// 寫入一行資料
///
///
public bool writeline(string outdata)
m_olecomm.executenonquery();
return true;
}return false;
}///
/// 結束寫入資料
///
public void endwrite()
}~cexcelwrite()
}使用方法
private void btnoutexcel_click(object sender, eventargs e)
{if (sfdexcel.showdialog() == dialogresult.ok)
{if (dgvmszh.rows.count > 0)
{string coldata = new string[7];
cexcelwrite cew = new cexcelwrite();
直接修改Datagridview並儲存到資料庫
using system using system.collections.generic using system.componentmodel using system.data using system.drawing using system.text using system.window...
SharedPreferences儲存資料
sharedprefrences是android中最容易理解的資料儲存技術,實際上sharedprefrences處理的就是乙個key value 鍵值對 sharedprefrences常用來成儲存一些輕量級的資料。使用方法 儲存資料 1 例項化sharedprefrences物件 2 例項化sh...
SharedPreferences儲存資料工具類
import android.content.context import android.content.sharedpreferences import android.content.sharedpreferences.editor public class preferenceutils r...