Hi, I'm using SQLite in a multithread application and I would like to fetch every select statement into the memory.
I can't use sqlite3_get_table since it doesn't support Unicode as far as I know. Is there a better way to fetch all the result to memory other than fetching it one by one and build a custom matrix? Thanks.