free manually no need to free data from sqlite3_column_blob
| 49 | // free manually |
| 50 | // no need to free data from sqlite3_column_blob |
| 51 | void release() { |
| 52 | if (data != NULL) { |
| 53 | gaiaFree(data); |
| 54 | data = NULL; |
| 55 | size = 0; |
| 56 | } |
| 57 | } |
| 58 | }; |
| 59 | |
| 60 | static bool createBlob(const hadmap::Points3d& geom, const int srs, sqlite3_blob_data& blob) { |
no outgoing calls