Wiki source code of Datenbank-Abfrage


Hide last authors
sas 9.1 1 {{figure image="db_statement_en.png" width="400" clear="h1"}}
2 User interface for actions of type //Database query//.
gru 1.1 3 {{/figure}}
4
sas 9.1 5 Actions of type //Database query// allows to execute a SQL query. For this purpose, a connection must have been previously created in Database Administration. Placeholders can be used within the query, for example to insert form data into the query. So-called prepared statements are generated, so that SQL injection is not possible.
gru 1.1 6
sas 9.1 7 == Parameters ==
gru 1.1 8
sas 9.1 9 === Database query details ===
gru 1.1 10
sas 9.1 11 ; Use configured DB query?
12 : If this option is selected, a DB query preconfigured in the backend can be selected. Additionally, details about the query will be displayed.
13 ; Connection
14 : Database connection, which was preconfigured in the administration.
15 ; SQL statement
16 : Text field for the SQL statement.
jdr 6.1 17
sas 9.1 18 == Action variables ==
jdr 6.3 19
sas 9.1 20 Actions of type //Database query// provide [[Action variables>>Formcycle.UserInterface.Variables||anchor="HActionvariables"]] which can be used in subsequent actions.
jdr 6.3 21
sas 9.1 22 === Standard action variables ===
jdr 6.3 23
sas 9.1 24 ; [%$<action name>.SUCCESS%]
25 : Return whether action was successfully executed. Returns Boolean (true/false).
26 ; [%$<action name>.RESULT%]
27 : Return all results provided by the action in structured form.
jdr 6.3 28
sas 9.1 29 ; [%$<action name>.ERROR_CODE%]
30 : The error code thrown in case of an error in the action. Empty if no error occurred.
31 ; [%$<action name>.ERROR_MESSAGE%]
32 : The thrown error message in the action's error case. Empty if no error occurred.
jdr 6.3 33
sas 9.1 34 === Action specific action variables ===
jdr 6.3 35
sas 9.1 36 ; [%$<action name>.RESULT.rows[i]['key']%]
37 : A JSON array containing the results of the SQL statement. Each entry in the JSON array is a JSON object, where the key corresponds to the database column name. The index i starts with 0.
38 ; [%$<action name>.RESULT.updateCount%]
39 : For an update statement: the number of affected rows in the database. Otherwise, the value is always 0.
jdr 7.2 40
sas 9.1 41 == Note ==
gru 1.1 42
sas 9.1 43 The entered statement is executed as //Prepared-Statement//, so that no so-called //SQL-Injection// is possible. Therefore do not use quotation marks.
gru 1.1 44
sas 9.1 45 (% style="color:#38761d" %)**Correct**
gru 1.1 46
47 {{code language="sql"}}
sas 9.1 48 INSERT INTO test_table (firstname, lastname) values ([%tffirstname%], [%tfname%])
gru 1.1 49 {{/code}}
50
sas 9.1 51 (% style="color:#cc0000" %)**False**.
gru 1.1 52
53 {{code language="sql"}}
sas 9.1 54 INSERT INTO test_table (firstname, lastname) values ('[%tffirstname%]', '[%tfname%]')
gru 1.1 55 {{/code}}