コード例 #1
0
 void CouchbaseRecordBinder::processQString(unsigned len, const char *value, const RtlFieldInfo * field)
 {
    size32_t charCount;
    rtlDataAttr text;
    rtlQStrToStrX(charCount, text.refstr(), len, value);
    processUtf8(charCount, text.getstr(), field);
 }
コード例 #2
0
ファイル: mysqlembed.cpp プロジェクト: ruidafu/HPCC-Platform
 virtual void processQString(unsigned len, const char *value, const RtlFieldInfo * field)
 {
     size32_t charCount;
     rtlDataAttr text;
     rtlQStrToStrX(charCount, text.refstr(), len, value);
     processString(charCount, text.getstr(), field);
 }