File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 44//! [SQLPage](https://sql-page.com) is a high-performance web server that converts SQL queries
55//! into dynamic web applications by rendering [handlebars templates](https://sql-page.com/custom_components.sql)
66//! with data coming from SQL queries declared in `.sql` files.
7- //!
7+ //!
88//! # Overview
99//!
1010//! SQLPage is a web server that lets you build data-centric applications using only SQL queries.
4848//! - [Custom Components](https://sql-page.com/custom_components.sql)
4949//! - [Authentication & Sessions](https://sql-page.com/examples/authentication)
5050//! - [File Uploads](https://sql-page.com/examples/handle_picture_upload.sql)
51- //!
51+ //!
5252//! # Example
5353//!
5454//! ```sql
5555//! -- Open a data list component
5656//! SELECT 'list' as component, 'Users' as title;
57- //!
57+ //!
5858//! -- Populate it with data
59- //! SELECT
59+ //! SELECT
6060//! name as title,
6161//! email as description
6262//! FROM users
You can’t perform that action at this time.
0 commit comments