vote up 0 vote down star

I have several projects where I need to append strings to a BSTR/CComBSTR/_bstr_t object (e.g. building a dynamic SQL statement). Is there an out-of-the-box type in the WinAPI to buffer the concatenation (like StringBuilder in .NET), or do I have to write my own? From what I know about the append methods, they perform re-allocation.

flag

2 Answers

vote up 2 vote down check

Copy the BSTR into a CString, do all the modifications there and then copy it back into the BSTR/CComBSTR. CString's allocations are faster than SysAllocStringLen.

link|flag
But does CString handle embedded NULs the same way that BSTR does? – Constantin May 1 at 22:45
Yes. CString handless NULLs just fine. – Franci Penov May 5 at 20:22
vote up 1 vote down

You have to write your own. You can use the SysAllocStringLen, or SysReallocString APIs to get different-sized buffers. They work on an input string, but you can pass NULL to allocate a fixed-size, uninitialised buffer.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.