A "Binary Large OBject". More...
#include <Blob.h>
Public Member Functions | |
| blob (const void *data, const size_t size) | |
| Constructs a blob object with contents of data. More... | |
| blob (const blob &other) | |
| Copy constructor. More... | |
| blob (blob &&other) | |
| Move constructor. More... | |
| blob & | operator= (const blob &other) |
| Copy assignment operator. More... | |
| blob & | operator= (blob &&other) |
| Move assignment operator. More... | |
| const void * | data () const |
| The raw data of the blob's contents. More... | |
| size_t | size () const |
| Used to get the size of the contained 'blob'. More... | |
A "Binary Large OBject".
A collection of binary data stored as a single entity in a database management system. blobs are typically images, audo or other multimedia object though they can be any form of data.
| sqlite::blob::blob | ( | const void * | data, |
| const size_t | size | ||
| ) |
| sqlite::blob::blob | ( | const blob & | other | ) |
| sqlite::blob::blob | ( | blob && | other | ) |
| const void * sqlite::blob::data | ( | ) | const |
| size_t sqlite::blob::size | ( | ) | const |
1.8.6