Lines Matching refs:nRealLen
48 SQLSMALLINT nRealLen=0; in getCharColAttrib() local
54 &nRealLen, in getCharColAttrib()
60 if ( nRealLen < 0 ) in getCharColAttrib()
61 nRealLen = BUFFER_LEN; in getCharColAttrib()
62 sValue = ::rtl::OUString(pName,nRealLen,m_pConnection->getTextEncoding()); in getCharColAttrib()
66 if(nRealLen > BUFFER_LEN) in getCharColAttrib()
68 pName = new char[nRealLen+1]; in getCharColAttrib()
73 nRealLen, in getCharColAttrib()
74 &nRealLen, in getCharColAttrib()
77 if ( nRet == SQL_SUCCESS && nRealLen > 0) in getCharColAttrib()
78 sValue = ::rtl::OUString(pName,nRealLen,m_pConnection->getTextEncoding()); in getCharColAttrib()