Exemplo n.º 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);
 }
Exemplo n.º 2
0
 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);
 }