truth
Databases 101
Databases in Wappler, from zero to query: connections, choosing drivers, and turning tables into usable data.
Why databases exist
Section titled “Why databases exist”A database is usually made of tables.
Row = one item (record)
Column = one piece of data (field)
Tables can reference each other so you can keep data organized (and avoid repeating the same info everywhere).
Where databases fit in a Wappler app
Section titled “Where databases fit in a Wappler app”Database stores data.
Server Connect reads/writes and enforces rules.
App Connect displays data and triggers actions.
So you typically don’t connect the browser directly to the database — the server sits in the middle as the safe gatekeeper.
truth
rules
actions
Think in tables
Section titled “Think in tables”A relational database is commonly organized like spreadsheets.
References and relationships
Section titled “References and relationships”TIP: In Wappler, Database Manager can set up references visually (so you can focus on the model, not the SQL details).
by IDs
many orders
table
Queries (ask questions of data)
Section titled “Queries (ask questions of data)”Most apps need CRUD operations: select, insert, update, and delete.
This is what your server (Server Connect) does when your UI (App Connect) needs data.
Conclusion
Section titled “Conclusion”Databases are where your app’s long-term data lives: tables store records, and references connect related records. Next, we’ll walk through a first end-to-end flow: database → Server Connect API → page.
rows
connect data
page
Continue
Section titled “Continue”Jump to the first data flow tour.