From 863e7c854e553850fdebd37c75055f4304949efe Mon Sep 17 00:00:00 2001 From: PChemGuy <39730837+pchemguy@users.noreply.github.com> Date: Tue, 18 Jun 2024 08:10:18 +0300 Subject: [PATCH] Update tutorial.md What is shown is generally referred to as parameterized SQL queries. Dynamic SQL generally refers to construction of SQL at runtime from strings. One example would be to construct a query in an SQLPage module from strings, write it to a *.sql file via enabled "exec" command, and load the new file via run_sql. Another possibility is provided by some RDBMS engines supporting exec/eval commands to evaluate a string as an SQL statement. --- examples/official-site/your-first-sql-website/tutorial.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/official-site/your-first-sql-website/tutorial.md b/examples/official-site/your-first-sql-website/tutorial.md index 23dd034a..bf46b8b0 100644 --- a/examples/official-site/your-first-sql-website/tutorial.md +++ b/examples/official-site/your-first-sql-website/tutorial.md @@ -112,8 +112,8 @@ For more information about the properties that can be set in sqlpage.json, see [ ![screenshot for the full sql website folder organisation](full-website.png) -Use dynamic SQL queries to let users interact with your database -================================================================= +Use parameterized SQL queries to let users interact with your database +====================================================================== ### Displaying a form