r/sqlite

▲ 1 r/sqlite

SQLite database deployment

Dear all,

I have a probably very newbie question but I have a small Python/PySide6 desktop app that uses SQLite databases and our office would like to use it at work, however, my research suggests that SharePoint/OneDrive we use at work could corrupt the database if more of us writes inside them. Is that correct please, and if it is, what options would we have to deploy it? We have an ICT department who would set it up, but I just want to be prepared and know our options before presenting it to them.

This was just a hobby project for me to learn Python but would love to have real use for this little app.

Thank you for all your replies in advance.

reddit.com
u/Jolly-Stomach-7812 — 21 hours ago
▲ 10 r/sqlite+1 crossposts

i build a sqlite explorer that works on browser and able to read the local sqlite3 db file

i used to use vscode sql DB extension, unfortunately, i am max out with the free version, as i am limited to 3 DB connection instance, and i have to constantly swap out the connection instance...

thus i created this to solve my issue, as i work a lot of development viewing multiple different sqlite DBs

hopefully this simple DB explorer is helpful for everyone

timx.co
u/timx88 — 7 days ago
▲ 76 r/sqlite+2 crossposts

Real-workload SQLite benchmark on a $5 VPS

I ordered the cheapest Hetzner CX23 ($4.99/mo, shared-resources tier) and ran a real-workload SQLite benchmark on it. Not a microbenchmark — a 6 GB database on a box with 3.7 GB of RAM, so reads actually have to touch disk.

Mixed OLTP workload (70% reads, 25% updates, 5% inserts): 3.9k ops/s, p99 = 710 µs, p999 = 2.2 ms.

= 14 million ops/hour on a $5 VPS, with sub-3 ms tail latency.

s13k.dev
u/s13k_ — 13 days ago
▲ 70 r/sqlite

I built a way to get an instant admin panel and dashboard from any SQLite file

Hey — I've been using SQLite for side projects for years, and the one thing that always annoyed me was the admin panel situation. Either I build yet another CRUD interface from scratch, or I use something cloud-based that feels wrong for a local database.

So I built Basevolt.

What it does:

  • Connects directly to your local SQLite `.db` files
  • AI scans your schema and auto-configures field types, display names, icons, and relationships
  • Gives you a clean, Notion-like admin UI instantly
  • Full CRUD, filtering, sorting, exporting
  • Customizable dashboard with charts, stats, and widgets
  • Webhooks for automation when data changes

Why it's different from DBeaver/DB Browser:

  • Not just a table viewer — it generates a full admin panel with relationships and actions
  • AI auto-setup means you're productive in seconds, not after 20 minutes of manual config
  • Modern UI that doesn't look like it's from 2005

Pricing: Free for 2 data sources (SQLite counts as one). $99/year for unlimited, with perpetual fallback — stop paying, keep the version you paid for.

Demo: https://demo.basevolt.app

Download: https://basevolt.app

Happy to answer questions. If you manage SQLite databases and hate the tooling, I'd love to hear what you wish existed.

u/kiddyuchina — 11 days ago