Sairam Gaddam wrote: > I have tried a method to create a Mem and add a string to it, which is as > below > > sqlite3VdbeMemSetStr(&(p->custom_aMem[0]), zColumn , > strlen(zColumn)*sizeof(char), SQLITE_UTF8, SQLITE_STATIC);
This is an internal function that applications are not supposed to know about. There is no right way to use it because the interface can change at any time. Why are you trying to do this? Regards, Clemens