Luther Baker <[EMAIL PROTECTED]> wrote:
> 
> I have one question - if I make a call to something like 
> _sqlite3_column_text16_ and get back a void* - do I need to deallocate 
> said memory or is that memory somehow static within the scope of the 
> function call and I simply need to COPY it if I wish to use it outside 
> of its immediate scope.
> 

You do not free the memory returned by sqlite3_column_text.
That is taken care of automatically the next time you call
sqlite3_step(), sqlite3_reset(), or sqlite3_finalize().
--
D. Richard Hipp   <[EMAIL PROTECTED]>

Reply via email to