主题:模糊查找的小问题
语句如下:c_value是CString 类型的变量
m_value.GetWindowText(c_value)
sql.Format(" select * from Book_kucun where b_num LIKE '%s'",c_value);
对于一些常量的模糊查找 我知道是在盘边添%和_来实现
现在我要对c_value这个变量来进行模糊查找 该怎么该这个句子?
m_value.GetWindowText(c_value)
sql.Format(" select * from Book_kucun where b_num LIKE '%s'",c_value);
对于一些常量的模糊查找 我知道是在盘边添%和_来实现
现在我要对c_value这个变量来进行模糊查找 该怎么该这个句子?