Source of truth
First Data Flow (DB → Server Connect → Page)
Explore First Data Flow (DB → Server Connect → Page): Your first end-to-end mental model, After this tour, you’ll know, and pipeline, step by step.
Your first end-to-end mental model
Section titled “Your first end-to-end mental model”A typical dynamic page is a simple pipeline:
IMPORTANT: Avoid the beginner trap: pages, APIs, and the database are not separate topics — they are one pipeline.
Source of truth
Returns JSON
Renders UI
After this tour, you’ll know
Section titled “After this tour, you’ll know”TIP: Once you can reliably move data DB → API → UI, you can build CRUD, dashboards, auth, and integrations much faster.
+ output
matter
→ UI
break
The pipeline, step by step
Section titled “The pipeline, step by step”App Connect runs in the browser and turns events into UI updates.
So App Connect is your client-side data binding and UI updates.
Step 1: Connect a database
Section titled “Step 1: Connect a database”NOTE: In Wappler, Database Manager handles connections and schema; Server Connect uses those connections for queries.
host
fields
simple query
Step 2: Create a Server Connect API
Section titled “Step 2: Create a Server Connect API”TIP: If the API returns JSON you can understand, your UI becomes much easier to build and debug.
can call
shape data
output
Step 3: Render it in the browser (App Connect)
Section titled “Step 3: Render it in the browser (App Connect)”data
text bindings
automatically
What you’ve built
Section titled “What you’ve built”This is the foundation for almost everything: auth, dashboards, CRUD, and integrations.
here
output
to UI
Conclusion
Section titled “Conclusion”You’ve connected the mental dots: the database stores records, Server Connect turns them into a safe JSON response, and the page (App Connect) renders the result. Next, skim the terminology reference so the words match what you now understand.
records
access
data
Continue
Section titled “Continue”Continue to Web App Terminology.