runxinzhi.com
首页
百度搜索
ado 字符串变量
这次变量主要针对 Mfc 的 Cstring 类型的变量(前面
VC 链接Access 数据库 插入变量到表
)
思路;
1 把cstring 类型 转为 string
2 string 转 char 数组
3 sprintf 写入数组
string 转 char 数组函数
[cpp]
view plain
copy
print
?
char
* zhuanhuan(std::string src)
{
char
*dst =
new
char
[255];
int
i;
int
j=src.length();
for
(i=0;i <src.length();i++)
dst[i]=src[i];
dst[i] =
' '
;
return
dst;
}
代码參考:
[cpp]
view plain
copy
print
?
openAccess();
CString cmbParam = L
"SelfImprovement"
;
std::string a1=(CT2A)(cmbParam.GetBuffer());
char
buff[256] = {0};
sprintf(buff,
"select * from tb_YCType where YCName = '%s' order by YCType desc"
,zhuanhuan(a1));
m_pRecordset = m_pConnection->Execute(buff, &RecordsAffected, adCmdText);
这个算一个有用的方法吧。其它方法我还没用到,也欢迎有好方法的能够交流!
相关阅读:
最近的题越来越难了,卧槽,搞一上午一题不会,题解也看不懂
hdu 4630 树状数组 ****
hdu 3473 划分树 ***
hdu 3360 最小点覆盖 **
hdu 1507 记录路径的二分匹配 **
poj 3177 边双联通 **
hdu 4612 边双联通 ***
Elasticsearch聚合后分页深入详解
redis 五种数据类型及其使用场景
再有人问你分布式锁,这篇文章扔给他
原文地址:https://www.cnblogs.com/zsychanpin/p/6904132.html
最新文章
Elevator(hdoj 1008)
quoit design(hdoj p1007)
Number Sequence (HDoj1005)
Let the Balloon Rise
A+B II
矩形个数
Max Sum(hd P1003)
入门经典——基础数据结构专题(List)
51nod算法马拉松 contest7
基础数据结构
热门文章
codeforces #304 DIV2
算法竞赛入门经典中的基础数学题
基本算法之贪心算法
基本算法之枚举算法
Tyvj P3276
简单模拟题
贪心法基础题目 HDU
hdu 2255 二分图最大权匹配 *
poj 2019 二维rmq *
poj 3368 rmq ***
Copyright © 2020-2023
润新知