... |
... |
@@ -1,6 +1,6 @@ |
1 |
1 |
{{content/}} |
2 |
2 |
|
3 |
|
-Database queries are similar to [[data sources>>doc:Sources]] (XML, CSV, JSON). The important difference is that they are not static, but read dynamically from a database. |
|
3 |
+Database queries are similar to [[data sources>>doc:Sources]] (XML, CSV, JSON). The important difference is that they are not static, but read dynamically from a database. In principle, only queries or SELECT statements should be stored at this point. Other statements (INSERT, etc.) may work - but this varies from database type to database type and is not recommended. Instead, such statements should be made with the corresponding workflow action [[Database query>>doc:Formcycle.Designer.Workflow.Actions.SQLStatement]]. |
4 |
4 |
|
5 |
5 |
{{info}} |
6 |
6 |
Before you can create a new database query, you must create a [[database connection >>doc:DBConnections]] if you have not done so already. |
... |
... |
@@ -12,17 +12,6 @@ |
12 |
12 |
{{figure image="data_db_query_de.png"}}Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.{{/figure}} |
13 |
13 |
|
14 |
14 |
|
15 |
|
-{{html wiki="true"}} |
16 |
|
-<div class='xm-figure xm-float-right xm-clear-h2' data-alt='Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.'><div class='xm-figure-inner' style='width:310px'>{{lightbox image='data_db_query_de.png' width='300' group='$height' group='$group' title='Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.'/}}<div class='xm-figure-caption'>Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.</div></div></div> |
17 |
|
-{{/html}} |
18 |
|
- |
19 |
|
- |
20 |
|
- |
21 |
|
-{{html wiki="true"}} |
22 |
|
-<div class='xm-figure xm-float-right xm-clear-h2' data-alt='Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.'><div class='xm-figure-inner' style='width:310px'>{{lightbox image='data_db_query_de.png' width='300' group='$height' group='$group' title='Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.'/}}<div class='xm-figure-caption'>Configuration screen for creating a database query in: (1) list of existing DB queries, (2) editor for defining the SQL query, (3) settings of the DB query, (4) console for testing the DB query.</div></div></div> |
23 |
|
-{{/html}} |
24 |
|
- |
25 |
|
- |
26 |
26 |
* Open the module "Database queries" and click "New" {{ficon name="plus-circle-outline"/}} in the header of the list (see [[figure>>||anchor="fig_data_db_query"]]). |
27 |
27 |
* The following data is needed for a Database query: |
28 |
28 |
** **Name**: A unique name for the database query |
... |
... |
@@ -33,7 +33,7 @@ |
33 |
33 |
|
34 |
34 |
The entered SQL statement is executed as a prepared statement, which prevents SQL injection attacks. You should not and need not use inverted commas (` or '). Also, you can use question marks ( ? ) as placeholders to build queries dynamically. |
35 |
35 |
|
36 |
|
-{{version major="6" minor="4" patch="0"/}} [[Variables>>doc:Formcycle.UserInterface.Variables.WebHome]] can be used in the SQL statements. |
|
25 |
+[[Variables>>doc:Formcycle.UserInterface.Variables.WebHome]] can be used in the SQL statements. |
37 |
37 |
|
38 |
38 |
== Using the database query == |
39 |
39 |
|
... |
... |
@@ -55,14 +55,15 @@ |
55 |
55 |
|queryParameter|When the query contains placeholders (question marks, {{code language="none"}}?{{/code}}), a list of parameters must be supplied for each placeholder. The number of items must match the number of parameters used in the SQL query. The items are separated with the delimiter as defined by the URL parameter //delimiter//. |
56 |
56 |
|
57 |
57 |
If possible the parameter //queryParameterValues// should be used for new projects instead of //queryParameter// because //queryParameter// will not be supported in a future version of {{formcycle/}}.|No |
58 |
|
-|queryParameterValues|{{version major="6" minor="6" patch="3"/}}Starting with {{formcycle/}} Version 6.6.3 this parameter can be used as an alternative to the parameters //queryParameter// and //delimiter//. Like these parameters, //queryParameterValues// is only required if placeholders in the form of a question mark {{code language="none"}}?{{/code}} are used within the SQL query. If this is the case, the individual query parameters are passed one after the other as a separate parameter //queryParameterValues//, which also eliminates the use of the parameter //delimiter//.|No |
|
47 |
+|queryParameterValues|Starting with {{formcycle/}} Version 6.6.3 this parameter can be used as an alternative to the parameters //queryParameter// and //delimiter//. Like these parameters, //queryParameterValues// is only required if placeholders in the form of a question mark {{code language="none"}}?{{/code}} are used within the SQL query. If this is the case, the individual query parameters are passed one after the other as a separate parameter //queryParameterValues//, which also eliminates the use of the parameter //delimiter//.|No |
59 |
59 |
|varName|Allows you to change name of the JSON response object. If not given, a plain JSON object with the result data is returned.|No |
60 |
60 |
|delimiter|The delimiter for the placeholder values, see //queryParameter//. Defaults to a comma {{code language="none"}},{{/code}} |
61 |
|
- |
|
50 |
+|jsonPath {{version major="7" minor="3"/}}|This parameter allows specifying a JSON path expression which will be applied to the returned result of the query on the server side. The example //$.returnValue[0]// returns the values of the first result of the query.|No |
|
51 |
+ |
62 |
62 |
If possible the parameter //queryParameterValues// should be used for new projects instead of //delimiter// and //queryParameter// because //delimiter// will not be supported in a future version of {{formcycle/}}.|No |
63 |
63 |
{{/table}} |
64 |
64 |
|
65 |
|
-When accessing a database servlet from a form, always use the database URL contained in the global object //XFC_METADATA//, see also the [[metadata>>doc:Formcycle.FormDesigner.CodingPanel.ScriptTab.FormMetadata]]. For example: {{code language="javascript"}}XFC_METADATA.urls.datasource_db{{/code}}. |
|
55 |
+When accessing a database servlet from a form, always use the database URL contained in the global object //XFC_METADATA//, see also the [[metadata>>doc:Formcycle.Designer.Form.CodingPanel.ScriptTab.FormMetadata]]. For example: {{code language="javascript"}}XFC_METADATA.urls.datasource_db{{/code}}. |
66 |
66 |
|
67 |
67 |
Further we recommend you use the script function {{jsdoc page="xutil" name="getdataquery"/}}, so you do not have to setup the servlet request manually. The result of the database query is returned as //JSON//. |
68 |
68 |
|
... |
... |
@@ -90,7 +90,7 @@ |
90 |
90 |
|
91 |
91 |
== Selection form elements == |
92 |
92 |
|
93 |
|
-If you want to display the returned data as options of a [[selection element>>doc:Formcycle.FormDesigner.FormElements.Selection]], you can do so easily by opening the {{designer/}} and selecting the database query as the data source of the selection element. |
|
83 |
+If you want to display the returned data as options of a [[selection element>>doc:Formcycle.Designer.Form.FormElements.Selection]], you can do so easily by opening the {{designer/}} and selecting the database query as the data source of the selection element. |
94 |
94 |
|
95 |
95 |
{{info}} |
96 |
96 |
Queries that are used in selection elements must not have a question mark "?". Queries with a "?" are not offered as a data source for selection elements. |
... |
... |
@@ -100,7 +100,7 @@ |
100 |
100 |
Using the result of a database query as the data source a select element in the {{designer case="dat"/}}. |
101 |
101 |
{{/figure}} |
102 |
102 |
|
103 |
|
-The result of the database query is used to create the options of the [[selection element>>doc:Formcycle.FormDesigner.FormElements.Selection]] in the following order: |
|
93 |
+The result of the database query is used to create the options of the [[selection element>>doc:Formcycle.Designer.Form.FormElements.Selection]] in the following order: |
104 |
104 |
|
105 |
105 |
{{box}} |
106 |
106 |
Displayed value, submitted value, optional value 1, optional value 2, ... |
... |
... |
@@ -118,11 +118,6 @@ |
118 |
118 |
|
119 |
119 |
== Examples == |
120 |
120 |
|
121 |
|
-{{info}} |
122 |
|
-{{version major="6" minor="6" patch="3"/}}Starting with {{formcycle/}} Version 6.6.3, the parameter //queryParameterValues// can be used instead of the parameter //queryParameter//. The former is recommended for new projects because the parameter //queryParameter// will not be supported in a future version of {{formcycle/}}. The following examples therefore show one servlet query with //queryParameter// and one with //queryParameterValues// for each SQL query. |
123 |
|
-{{/info}} |
124 |
|
- |
125 |
|
- |
126 |
126 |
{{code language="sql"}} |
127 |
127 |
select name, first_name from table where first_name like (?) |
128 |
128 |
{{/code}} |
... |
... |
@@ -130,9 +130,6 @@ |
130 |
130 |
This SQL statement returns the names of all persons with a certain first name. The first name to search for is specified via an URL parameter. |
131 |
131 |
|
132 |
132 |
URL for running the query: |
133 |
|
-{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameter=Robinson{{/code}} |
134 |
|
- |
135 |
|
-{{version major="6" minor="6" patch="3"/}}URL that can be used starting with {{formcycle/}} version 6.6.3 for running the query: |
136 |
136 |
{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameterValues=Robinson{{/code}} |
137 |
137 |
\\ |
138 |
138 |
|
... |
... |
@@ -143,9 +143,6 @@ |
143 |
143 |
Retrieves the name of a person with a certain ID. The ID is given as an URL parameter. |
144 |
144 |
|
145 |
145 |
URL for running the query: |
146 |
|
-{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameter=100{{/code}} |
147 |
|
- |
148 |
|
-{{version major="6" minor="6" patch="3"/}}URL that can be used starting with {{formcycle/}} version 6.6.3 for running the query: |
149 |
149 |
{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameterValues=100{{/code}} |
150 |
150 |
\\ |
151 |
151 |
|
... |
... |
@@ -156,9 +156,6 @@ |
156 |
156 |
Retrieves the names of all persons that live in certain city. The city and the ZIP code are given as URL parameters. |
157 |
157 |
|
158 |
158 |
URL for running the query: |
159 |
|
-{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameter=Paris,75001{{/code}} |
160 |
|
- |
161 |
|
-{{version major="6" minor="6" patch="3"/}}URL that can be used starting with {{formcycle/}} version 6.6.3 for running the query: |
162 |
162 |
{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameterValues=Paris&queryParameterValues=75001{{/code}} |
163 |
163 |
\\ |
164 |
164 |
|
... |
... |
@@ -169,9 +169,6 @@ |
169 |
169 |
This SQL statement returns the names of all persons who live in a place that **starts **with the given characters. The '%' character serves as a wildcard for any number of characters. Depending on the DBMS used, the syntax may differ slightly (here: MySQL). The requested value is passed via URL parameters. |
170 |
170 |
|
171 |
171 |
URL for running the query: |
172 |
|
-{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameter=Par{{/code}} |
173 |
|
- |
174 |
|
-{{version major="6" minor="6" patch="3"/}}URL that can be used starting with {{formcycle/}} version 6.6.3 for running the query: |
175 |
175 |
{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameterValues=Par{{/code}} |
176 |
176 |
\\ |
177 |
177 |
|
... |
... |
@@ -182,7 +182,4 @@ |
182 |
182 |
This SQL statement returns the names of all persons who live in a place that **contains **the given characters. Upper/lower case spelling is irrelevant becauce the statement converts both, the value column and the actual filter value to lower case (lower(...)). The requested value is passed via URL parameters. |
183 |
183 |
|
184 |
184 |
URL for running the query: |
185 |
|
-{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameter=aRi{{/code}} |
186 |
|
- |
187 |
|
-{{version major="6" minor="6" patch="3"/}}URL that can be used starting with {{formcycle/}} version 6.6.3 for running the query: |
188 |
188 |
{{code language="none"}}http://myserver/formcycle/datenquelledb?mandantName=myself&name=demo&queryParameterValues=aRi{{/code}} |