///用于构建传递SQL的字符串
class CParamString
{
public:
    CParamString();

    ~CParamString();

    int size();

    ///增加一个值
    void add(string s);

    ///获取指定位置值
    string getPos(int iPos);

    ///转化成字符串
    string toString();

    ///清空
    void clear();

    ///设置toString的分隔符
    void setSep(string sSep);

    ///打印信息
    void dump();

    ///从字段串加载
    int fromString(string param);

    ///直接使用一个字符串加载
    static string get1(string sV1);

    ///直接使用二个字符串加载
    static string get2(string sV1, string sV2);

    ///直接使用三个字符串加载
    static string get3(string sV1, string sV2, string sV3);

    ///直接使用四个字符串加载
    static string get4(string sV1, string sV2, string sV3, string sV4);

    ///直接使用五个字符串加载
    static string get5(string sV1, string sV2, string sV3, string sV4,string sV5);

};
Copyright © TouchNet 2015 all right reserved,powered by Gitbook最后修订时间: 2022-06-21 09:21:04

results matching ""

    No results matching ""