javascript - Cordova SQLite save BLOB - Stack Overflow

admin2025-04-03  0

I have a problem with Cordova SQLite plugin.

How can I save BLOB image to SQLite?

I have BLOB object in JS:

Blob:{
size: 96874
type: "image/jpeg"
__proto__: Blob
length: 1}

And I trying to save it

INSERT INTO images (img) VALUES (?);

And when i trying to get this image:

SELECT img FROM images

I get this string:

img: "{"type":"image\/jpeg","size":96874}"

How can i convert it to BLOB again?

Also i trying to save images in base64, but i can't save big images to SQLite, because base64 string is very huge. (It's works with small images)

Please, help me and sorry for my English.

I have a problem with Cordova SQLite plugin.

How can I save BLOB image to SQLite?

I have BLOB object in JS:

Blob:{
size: 96874
type: "image/jpeg"
__proto__: Blob
length: 1}

And I trying to save it

INSERT INTO images (img) VALUES (?);

And when i trying to get this image:

SELECT img FROM images

I get this string:

img: "{"type":"image\/jpeg","size":96874}"

How can i convert it to BLOB again?

Also i trying to save images in base64, but i can't save big images to SQLite, because base64 string is very huge. (It's works with small images)

Please, help me and sorry for my English.

Share Improve this question asked Apr 14, 2015 at 9:20 ArtemKhArtemKh 1,0007 silver badges15 bronze badges
Add a ment  | 

5 Answers 5

Reset to default 6

You cannot save JavaScript Blob objects to the SQLite Plugin. It doesn't support the Blob format. Yes I know it has a BLOB type, but confusingly it's not the same thing. :)

WebSQL/SQLite Plugin does support binary strings as an alternative to Blobs. However, you may run into issues because there are numerous bugs in the implementation on both iOS and Android (some details are here).

In PouchDB we worked around these issues, so the attachment API abstracts everything away for you. Follow the PouchDB attachment guide and it will convert Blobs for you and store them in the database. To create a PouchDB that talks to the SQLite Plugin, you will need to do the following:

/* prefer websql, which will actually use the SQLite Plugin if available */
var db = new PouchDB('mydbname', {adapter: 'websql'});
if (!db.adapter) {
  /* fall back to IndexedDB for FirefoxOS, Windows Phone, etc. */
  db = new PouchDB('mydbname');
}

If you want to convert between Blobs and binary strings or a variety of other formats, check out blob-util.

You could use blob literals and the hex function to treat blob values as hex strings at the interface between SQL and JavaScript, that works fine.

how big are your images? I've build an app which saved images to app database, see this inventory-service. I've using PouchDB and a customer base64-service. You can also find the App in the official stores.

My remendation is to simply store your pictures as flat files, with unique file names of course, and store the references in your sqlite database.

You can't save binary image to local sqlite but one solution exists if you use camera or gallery to upload image:

photoOption(src, val) {
    const options: CameraOptions = {
      quality: 60,
      destinationType: this.camera.DestinationType.FILE_URI,
      encodingType: this.camera.EncodingType.JPEG,
      mediaType: this.camera.MediaType.PICTURE,
      sourceType: src,
      correctOrientation: true
    };

    this.camera.getPicture(options).then((imageData) => {
      let FILE_URI = imageData; // this is FILE_URI (file:///storage/emulated/0/Android/data/.mypany.myproject/cache/1022001.jpg) like this
      this.insertImgIntoSqlite(FILE_URI);
    }, (err) => {
      alert(JSON.stringify(err));
    });
  }

You can save FILE_URI in local sqlite and when you want to upload to server convert to BINARY_FILE and upload to server

转载请注明原文地址:http://conceptsofalgorithm.com/Algorithm/1743628361a213841.html

最新回复(0)