Python Forum
ZIP file in Sqlite3 database
Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
ZIP file in Sqlite3 database
#4
You appear to think a zip file is somehow different than other files. It is not. It is a bunch of binary data in a format that can be understood by a zip program. If you store a zip file in your database it ceases being a file and becomes a BLOB. The binary data doesn't change. THe format doesn't change. It just moved to a new locale and no longer has a filename or a path. You can turn it back into a file by writing the BLOB to a file.

What we call files are really nothing more than BLOBs in a database we call the file system.
Reply


Messages In This Thread
ZIP file in Sqlite3 database - by chesschaser - Jul-23-2020, 02:19 PM
RE: ZIP file in Sqlite3 database - by deanhystad - Jul-23-2020, 02:31 PM
RE: ZIP file in Sqlite3 database - by chesschaser - Jul-23-2020, 02:32 PM
RE: ZIP file in Sqlite3 database - by deanhystad - Jul-23-2020, 05:00 PM
RE: ZIP file in Sqlite3 database - by chesschaser - Jul-23-2020, 09:53 PM

Possibly Related Threads…
Thread Author Replies Views Last Post
  Create SQLite3 database with peewee Jim53_1980 2 809 Dec-20-2023, 02:38 PM
Last Post: buran
  Regex replace in SQLite3 database WJSwan 1 898 Dec-04-2023, 05:55 PM
Last Post: Larz60+
  Rows not adding to sqlite3 database using SQLAlchemy Calab 11 2,025 Jun-02-2023, 05:53 PM
Last Post: bowlofred
  Basic SQL query using Py: Inserting or querying sqlite3 database not returning data marlonbown 3 1,563 Nov-08-2022, 07:16 PM
Last Post: marlonbown
  Python Variables and Sqlite3 Database Staples200 1 3,308 May-25-2021, 02:40 AM
Last Post: Staples200
  how do i store then call a mp3 from sqlite3 .db file gr3yali3n 3 5,971 Dec-11-2020, 10:28 AM
Last Post: snippsat
  sqlite3 database problem Maryan 2 2,596 Oct-05-2020, 05:21 AM
Last Post: buran
  sqlite3 database does not save data across restarting the program SheeppOSU 1 3,556 Jul-24-2020, 05:53 AM
Last Post: SheeppOSU
  Importing data from a text file into an SQLite database with Python macieju1974 7 4,369 Jun-29-2020, 08:51 PM
Last Post: buran
  Trying to send input from html form to database SQLite3 RonnyGiezen 3 91,039 Dec-21-2019, 02:09 PM
Last Post: ibreeden

Forum Jump:

User Panel Messages

Announcements
Announcement #1 8/1/2020
Announcement #2 8/2/2020
Announcement #3 8/6/2020