The same engine a bank runs, scaled down to the device in your pocket.

ToolBerry runs a real SQLite database on your phone, not a file or a spreadsheet. We made that choice because a field service business isn't a list, it's a web of connections, and only a database can answer questions across that web in milliseconds, even when you have years of data behind you. Here's what that gets you.


Why not just save a file?

Manuel runs a five-truck HVAC outfit outside Phoenix. Two years into using a notes-style app, tapping into a repeat customer took four seconds to load. Multiply that by forty lookups a day and the tool starts working against him.

That's the trap with the obvious approach. The easy way to build an offline app is to dump your data into a file: a list of customers, a list of jobs, written to storage on the device. It works, and lots of apps do it. It falls apart the moment your business gets real.

A field service business is a web of connections. Customers have multiple sites. Sites have equipment. Equipment has service history. Service history connects to invoices, and invoices connect to payments. The question "show me every job at this customer's north warehouse over the last twelve months, with totals" isn't a list lookup. It's a query that crosses five or six of those connections at once.

If your data is just a file, every question like that means loading the whole file and sorting through it by hand. That's fine at ten customers. At a few hundred with years of history, the app starts to crawl.

A real database is built for exactly this. It indexes the connections and answers those questions in milliseconds, whether you have ten customers or fifty thousand.


What do you actually get?

You probably don't think about your database while you use the app. That's the point. Here's where it shows up in your day:

History that loads instantly. Tap into a customer and their full job history appears with no spinner and no "loading older items" trick. The data is already indexed, so pulling it up is essentially free. In our own June 2026 testing on a 10,000-record database, a sorted history query came back in about 5 milliseconds — and it stays that fast whether you have ten customers or fifty thousand.

Reports that answer instantly. "What did I bill this quarter?" "Which customers haven't called in over a year?" "How much did I spend on parts last month?" These aren't features we bolted on. They're just questions the database answers because it knows how everything connects — in milliseconds, not seconds.

An app you grow into, not out of. Plenty of small-business tools feel snappy at first and bog down once you've got real data in them. We use the same architecture that powers tools handling massive datasets, scaled down to one user. The speed you feel on day one is the speed you'll feel three years in.


The same engine on every device

A note for the curious: the engine we use is SQLite, the most widely deployed database in the world, with more than 1 trillion databases in active use. It's already running inside your phone, your browser, your TV, and most of the apps you touch daily. It was first released in 2000, so it has 25 years of hardening behind it, and it's tested to aviation standards with 100% branch coverage. Aircraft fly with it. Banks settle with it.

We run it on iPhones, Android phones, and in desktop browsers: the same engine and the same data shape on all three. Whether you open ToolBerry on your truck phone or a laptop in the office, it's the same thing under the hood. Nothing gets translated, nothing gets re-shaped.

The browser path is the harder one technically, and we'll write that up separately for readers who care about that side. For everyone else, the takeaway is simple. It's the same proven engine that already powers the device in your pocket, used the way it was designed to be used.