Wayback Machinekoobas.hobune.stream
May JUN Jul
Previous capture 14 Next capture
2021 2022 2023
2 captures
12 Jun 22 - 14 Jun 22
sparklines
Close Help
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
  • Asset Store
  • Get Unity

UNITY ACCOUNT

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account
  • Blog
  • Forums
  • Answers
  • Evangelists
  • User Groups
  • Beta Program
  • Advisory Panel

Navigation

  • Home
  • Products
  • Solutions
  • Made with Unity
  • Learning
  • Support & Services
  • Community
    • Blog
    • Forums
    • Answers
    • Evangelists
    • User Groups
    • Beta Program
    • Advisory Panel

Unity account

You need a Unity Account to shop in the Online and Asset Stores, participate in the Unity Community and manage your license portfolio. Login Create account

Language

  • Chinese
  • Spanish
  • Japanese
  • Korean
  • Portuguese
  • Ask a question
  • Spaces
    • Default
    • Help Room
    • META
    • Moderators
    • Topics
    • Questions
    • Users
    • Badges
  • Home /
avatar image
0
Question by Giusort · Oct 14, 2016 at 07:43 AM · savingsqliteimagesblobstoring

Storing blob in SQLite

Hi, I wrote this code to read blob data from a SQLite DB:

 public static byte[] GetBlobData(string Query){
         byte[] BlobContent = new byte[0];
         
         dbcmd = dbcon.CreateCommand();
         dbcmd.CommandText = Query;
         reader = dbcmd.ExecuteReader();
         
         while (reader.Read()) {
             BlobContent = (byte[])reader["blob"];
         }
         return BlobContent;
     }

Where query is like "SELECT blob FROM 'blobfield' WHERE id="...

How about storing blob data? Any suggestion?

Thanks!

Gius

Comment
Add comment · Show 1
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image RaviRK · Mar 13, 2018 at 06:20 AM 0
Share

Bro, if you found the solution, please share.

1 Reply

· Add your reply
  • Sort: 
avatar image
3

Answer by Giusort · Mar 14, 2018 at 02:28 PM

So, the correct code is:

 public static bool SaveBlobData(String tableName, byte[] BlobContent) {
         string query;
         
         query = "INSERT INTO " + tableName + "(blob) VALUES (@BlobContent)";
         try {
             dbcmd = dbcon.CreateCommand();
             dbcmd.CommandText = query;
             SqliteParameter setParam = new SqliteParameter("@BlobContent", BlobContent);
             dbcmd.Parameters.Add(setParam);
 
             dbcmd.ExecuteNonQuery ();
         } catch(Exception exception) {
             Debug.LogError(exception.Message);
             return false;
         }
         return true;
     }

Don't you forget to open the DB before saving data in. Hope this help!

Comment
Add comment · Show 1 · Share
10 |3000 characters needed characters left characters exceeded
▼
  • Viewable by all users
  • Viewable by moderators
  • Viewable by moderators and the original poster
  • Advanced visibility
Viewable by all users
avatar image talyh · Sep 16, 2019 at 08:13 PM 0
Share

While I can see this working (ie. not throwing an error), it is also not saving the byte[] value to the DB. Debugging setParam shows that it was associated properly, and I can see the array values. Looking at the DB post insertion, that column is empty. Any ideas where the issue might be?

NOTE: Because references for SQLite for C# indicate the need to also set the dbType and size, I've included those

 SqliteParameter paramPhoto = new SqliteParameter("@photoBytes", photoBytes);
 paramPhoto.Size = photoBytes.Length;
 paramPhoto.DbType = DbType.Binary;
 cmdCreateUser.Parameters.Add(paramPhoto);

Tried the code both with and without those 2 lines, same result in both cases.

Your answer

Hint: You can notify a user about this post by typing @username

Up to 2 attachments (including images) can be used with a maximum of 524.3 kB each and 1.0 MB total.

Follow this Question

Answers Answers and Comments

5 People are following this question.

avatar image avatar image avatar image avatar image avatar image

Related Questions

Array to blob 0 Answers

Setting Saved Properties of Procedurally Generated Texture2Ds... 0 Answers

loading image as a blob from Sqlite,loading image from Sqlite 1 Answer

How to save blob in bytes to sqlite 0 Answers

Image showing as question mark after loading from SQLite database 0 Answers


Enterprise
Social Q&A

Social
Subscribe on YouTube social-youtube Follow on LinkedIn social-linkedin Follow on Twitter social-twitter Follow on Facebook social-facebook Follow on Instagram social-instagram

Footer

  • Purchase
    • Products
    • Subscription
    • Asset Store
    • Unity Gear
    • Resellers
  • Education
    • Students
    • Educators
    • Certification
    • Learn
    • Center of Excellence
  • Download
    • Unity
    • Beta Program
  • Unity Labs
    • Labs
    • Publications
  • Resources
    • Learn platform
    • Community
    • Documentation
    • Unity QA
    • FAQ
    • Services Status
    • Connect
  • About Unity
    • About Us
    • Blog
    • Events
    • Careers
    • Contact
    • Press
    • Partners
    • Affiliates
    • Security
Copyright © 2020 Unity Technologies
  • Legal
  • Privacy Policy
  • Cookies
  • Do Not Sell My Personal Information
  • Cookies Settings
"Unity", Unity logos, and other Unity trademarks are trademarks or registered trademarks of Unity Technologies or its affiliates in the U.S. and elsewhere (more info here). Other names or brands are trademarks of their respective owners.
  • Anonymous
  • Sign in
  • Create
  • Ask a question
  • Spaces
  • Default
  • Help Room
  • META
  • Moderators
  • Explore
  • Topics
  • Questions
  • Users
  • Badges