当前位置:   article > 正文

sqlite3的特殊字符转义及通配符_sqlite 转义字符

sqlite 转义字符

 sqlite3数据库在搜索的时候,一些特殊的字符需要进行转义, 具体的转义如下: 
     /   ->    //
     '   ->    ''
     [   ->    /[
     ]   ->    /]
     %   ->    /%
     &   ->    /&
     _   ->    /_
     (   ->    /(
     )   ->    /)

c/c++ 转换函数

void replace_str(std::string& str, const std::string& before, const std::string& after)
{
    for (std::string::size_type pos(0); pos != std::string::npos; pos += after.length())
    {
        pos = str.find(before, pos);
        if (pos != std::string::npos)
            str.replace(pos, before.length(), after);
        else
            break;
    }
}

std::string sqliteEscape(std::string keyWord){
    replace_str(keyWord,"/", "//");
    replace_str(keyWord, "'", "''");
    replace_str(keyWord, "[", "/[");
    replace_str(keyWord, "]", "/]");
    replace_str(keyWord, "%", "/%");
    replace_str(keyWord, "&", "/&");
    replace_str(keyWord, "_", "/_");
    replace_str(keyWord, "(", "/(");
    replace_str(keyWord, ")", "/)");
    return keyWord;
}

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/小丑西瓜9/article/detail/173938
推荐阅读
相关标签
  

闽ICP备14008679号