摘要:
以前得到DataSet的时候都是利用直接写sql语句(适合初学者) public static DataSet GetDs(string sqlstr) { ds = new DataSet(); sqlconn = new SqlConnection(); sqlconn.ConnectionString =... 阅读全文
posted @ 2013-03-26 19:20 Roger Luo 阅读(7775) 评论(0) 推荐(0) 编辑
|
|||
摘要:
以前得到DataSet的时候都是利用直接写sql语句(适合初学者) public static DataSet GetDs(string sqlstr) { ds = new DataSet(); sqlconn = new SqlConnection(); sqlconn.ConnectionString =... 阅读全文
posted @ 2013-03-26 19:20 Roger Luo 阅读(7775) 评论(0) 推荐(0) 编辑
摘要:
wstring to string string CUtility::TCHAR2char(TCHAR* tchStr){ int iLen = 2*wcslen(tchStr); char* chRtn = new char[iLen+1]; memset(chRtn, 0, iLen + 1); wcstombs(chRtn,tchStr,iLen+1); ... 阅读全文
posted @ 2013-03-26 14:59 Roger Luo 阅读(1472) 评论(0) 推荐(0) 编辑 |
|||