- 博客(10)
- 资源 (1)
- 收藏
- 关注
原创 fastJson中一些问题总结
1. json字符串中,“{”表示 的是对象,“]"表示的是数组, 例如:{"nodeId":1,"parentId":0,"descript":"AA","children":[{"nodeId":2,"parentId":1,"descript":"BB","children":null},{"nodeId":3,"parentId":1,"descript":"CC","childr
2015-09-18 16:11:34 762
原创 wchar 转成COleDataTime
wchar_t *BDate = new wchar_t [wcslen(pBDate)*sizeof(wchar_t )]; wcscpy_s(BDate,wcslen(pBDate)+1,pBDate); //wchar to datetime COleDateTime *tempDT = new COleDateTime(); tempDT->Pars
2012-10-15 11:04:40 310
原创 wchar 转成int
wchar_t *pIndex = static_cast(Marshal::StringToHGlobalUni(Patient->Index).ToPointer()); //wchar to int int *nIndex = new int(); *nIndex
2012-10-15 10:57:10 4408
原创 CString转成WChar
inline wchar_t* CStringToWChar_t( CString cstrInput){ wchar_t *wCharString =new wchar_t(cstrInput.GetLength() +1); wmemset(wCharString,'\0',sizeof(wCharString)); wCharString = cstrInput.GetBu
2012-10-15 10:20:05 1061
原创 wchar转成char
wchar *MwcharLPTSTR pf = (LPTSTR)(LPCTSTR)Mwchar;char *pFileName =(char *)malloc( 2*wcslen(pf)+1 );wcstombs(pFileName , pf, 2*wcslen(pf)+1 );
2012-10-15 10:17:55 452
转载 C++封装C#的DLL
下面就用一个完整的实例来说明怎样在C++中使用C#编写的类。比如说,现在有一个用C#编写的DLL工程CsharpDll里面有一个Person类://Person.cs usingSystem;namespaceCsharpDll{publicclassPerson{publicPerson(){Name="NoName";Sex='N';Age=0;m_strLastError="
2012-08-21 15:43:23 2259
原创 vs2008 连接SQL Server2005 express 或ACCESS数据库
SQL server配置按我的另一篇文章即可搞定。环境配置好后,按又下方法即可连接到任一数据库,对其进行操作。主要步骤为:1. 在stdafx.h头文件末尾中加入#import "C:\Program Files\Common Files\System\ado\msado15.dll" named_guids rename("EOF","adoEOF")#pragma warni
2012-07-19 15:35:32 700
转载 在SQL Server数据库之间进行数据导入导出
1. 在SQL Server数据库之间进行数据导入导出 (1).使用SELECT INTO导出数据 在SQL Server中使用最广泛的就是通过SELECT INTO语句导出数据,SELECT INTO语句同时具备两个功能:根据SELECT后跟的字段以及INTO后面跟的表名建立空表(如果SELECT后是*, 空表的结构和FROM所指的表的结构相同);将SELECT查出的数据插入到这
2012-07-04 17:11:47 512
原创 VC2008连接SQL2005开发总结
1. Install VS20082. Install SQL2005 and SQL SMSE2005(Server Manager Studio Expree) You should donwload them on the Microsoft website. The SQL SMSE2005 also is free for download and development
2012-07-04 14:18:13 572
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人