Ich möchte ein Bild (von der URL) in einer SQLite-Datenbank speichern. Dafür benutze ich: db = new DataBase(getApplicationContext()); URL url = new URL("http://sree.cc/wp-content/uploads/schogini_team.png"); URLConnection ucon = url.openConnection(); InputStream is = ucon.getInputStream(); BufferedInputStream bis = new BufferedInputStream(is,128); ByteArrayBuffer barb= new ByteArrayBuffer(128); int current = 0; while ((current = bis.read()) != -1) …
Ich habe SQLite in C ++, Python und jetzt (vielleicht) in C # verwendet. In all diesen Fällen habe ich keine Ahnung, wie ich einen Blob in eine Tabelle einfügen soll. Wie speichere und rufe ich einen Blob in SQLite ab?
Ich schreibe Code, der große Mengen von Bilddaten durchläuft, und bereite einen großen Delta-Block vor, der alles zum Senden komprimiert enthält. Hier ist ein Beispiel, wie diese Daten sein könnten [MessagePackObject] public class Blob : VersionEntity { [Key(2)] public Guid Id { get; set; } [Key(3)] public DateTime CreatedAt { …
We use cookies and other tracking technologies to improve your browsing experience on our website,
to show you personalized content and targeted ads, to analyze our website traffic,
and to understand where our visitors are coming from.
By continuing, you consent to our use of cookies and other tracking technologies and
affirm you're at least 16 years old or have consent from a parent or guardian.