[sqlite] How to read data from mem?

2016-03-16 Thread Sairam Gaddam
I want to read the mem when the program is inside the sqlite3VdbeExec() function and in case OP_Insert. Here the mem consists of entire row to be inserted. When I read the mem *pData, I found from the member pData->flags that it contains a BLOB. But when I tried to print BLOB in pData->z, I didnt

[sqlite] How to read data from mem?

2016-03-16 Thread Cezary H. Noweta
Hello, On 2016-03-16 07:03, Sairam Gaddam wrote: > Here the mem consists of entire row to be inserted. Format of this data is described here: http://sqlite.org/fileformat2.html#serialtype > When I read the mem > *pData, I found from the member pData->flags that it contains a BLOB. But > when I