SQLPage Documentation (original) (raw)
If you are completely new to SQLPage, you should start by reading the get started tutorial, which will guide you through the process of creating your first SQLPage application.
Building an application with SQLPage is quite simple. To create a new web page, just create a new SQL file. For each SELECT statement that you write, the data it returns will be analyzed and rendered to the user. The two most important concepts in SQLPage are components and parameters.
- components are small user interface elements that you can use to display your data in a certain way.
- top-level parameters are the properties of these components, allowing you to customize their appearance and behavior.
- row-level parameters constitute the data that you want to display in the components.
To select a component and set its top-level properties, you write the following SQL statement:
SELECT 'component_name' AS component, 'my value' AS top_level_parameter_1;
Then, you can set its row-level parameters by writing a second SELECT statement:
SELECT my_column_1 AS row_level_parameter_1, my_column_2 AS row_level_parameter_2 FROM my_table;
This page documents all the components provided by default in SQLPage and their parameters. Use this as a reference when building your SQL application. If at any point you need help, you can ask for it on the SQLPage forum.
If you know some HTML, you can also easily create your own components for your application.
authenticationCreate pages with password-restricted access. When you want to add user authentication to your SQLPage application, you have two main options: 1. The `authentication` component: - lets you manage usernames and passwords yourself - does not require any external service - gives you fine-grained control over - which pages and actions are protected - the look of the login form - the duration of the session - the permissions of each user 2. **Single sign-on** - lets users log in with their existing accounts (like Google, Microsoft, or your organization's own identity provider) - requires setting up an external service (Google, Microsoft, etc.) - frees you from implementing a lot of features like password reset, account creation, user management, etc. This page describes the first option. When used, this component has to be at the top of your page, because once the page has begun being sent to the browser, it is too late to restrict access to it. The authentication component checks if the user has sent the correct password, and if not, redirects them to the URL specified in the link parameter. If you don't want to re-check the password on every page (which is an expensive operation), you can check the password only once and store a session token in your database (see the session example below). You can use the cookie component to set the session token cookie in the client browser, and then check whether the token matches what you stored in subsequent pages.
status_codeSets the HTTP response code for the current page. This is an advanced technical component. You typically need it when building internet-facing APIs and websites, but you may not need it for simple internal applications. - Indicating operation results when using SQLPage as an API - `200`: *OK*, for successful operations - `201`: *Created*, for successful record insertion - `404`: *Not Found*, for missing resources - `500`: *Internal Server Error*, for failed operations - Handling data validation errors - `400`: *Bad Request*, for invalid data - Enforcing access controls - `403`: *Forbidden*, for unauthorized access - `401`: *Unauthorized*, for unauthenticated access - Tracking system health - `500`: *Internal Server Error*, for failed operations For search engine optimization: - Use `404` for deleted content to remove outdated URLs from search engines - For redirection from one page to another, use - `301` (moved permanently), or - `302` (moved temporarily) - Use `503` during maintenance