Skip to content
Snippets Groups Projects
Commit 7de10ffc authored by Fabian Adler's avatar Fabian Adler :arrow_upper_right:
Browse files

change .build() to newer version in documentation -> toString()

parent 83fdea1d
No related branches found
No related tags found
No related merge requests found
......@@ -33,7 +33,7 @@ For Example if you have a "DataQuery" datasource your select could look like thi
--
newSelect("ID, FIELD1, FIELD2, FIELD3")
.from("TABLE1")
.build();
.toString();
--
Therefore the field "ID" would have the place 0 and "FIELD1" would have 1 and so on.
......
......@@ -145,7 +145,7 @@ var yourConfig = {
var yourConfig = {
DataQuery: newSelect("PERSONID, FIRSTNAME, LASTNAME, DOB")
.from("PERSON")
.build(),
.toString(),
ImportCommand: "insert",
AliasTo: "Data_alias_NoAudit",
AliasFrom: "Data_alias",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment