Specifies the type of command
used by a data query.
SyntaxReference_Syntax.commandType = "unknown | text | table | storedProc"
Values
Type
|
Values
|
String
|
unknown (default)
text
table
storedProc
An explicit
SQL query string that is not saved under a name in the database.
A table
stored in the database.
A
query, such as a SQL query, created to query one or more tables
in the database and then saved as a named query within the database.
|
ExamplesIn
these examples, Titles represents the data connection
name.
JavaScriptxfa.sourceSet.Titles.nodes.item(1).query.setAttribute("text", "commandType");
FormCalcxfa.sourceSet.Titles.nodes.item(1).query.setAttribute("text", "commandType")
|
|
|