Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
2.3k views
in Technique[技术] by (71.8m points)

c++ - Converting in-memory sqlite database to blob/char array

I have an in-memory sqlite database which I want to convert to a simple blob, and I want to do this preferably without using any serialization library.

I also use sqlite api backup calls to serialize it to disk, can this also be used for my purpose?

Or, is it possible to simply copy the database from memory to a char array in any other way? (Development is done using C++)

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)

SQLite does not give you direct access to the internal storage of an in-memory database.

You could implement your own VFS to create a 'file' interface for a blob, but just going through a (temporary) disk file sounds much easier.


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to WuJiGu Developer Q&A Community for programmer and developer-Open, Learning and Share
...