Difference between revisions of "SQLVALUES()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
(2 intermediate revisions by one user not shown) | |||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
− | |||
==Purpose== | ==Purpose== | ||
Function to return the single row result of an SQL statement | Function to return the single row result of an SQL statement | ||
Line 33: | Line 29: | ||
==Products== | ==Products== | ||
− | Recital | + | Recital, Recital Server |
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
− | [[Category:Data Connectivity]] | + | [[Category:Remote Data Connectivity]] |
− | [[Category:Data Connectivity Functions]] | + | [[Category:Remote Data Connectivity Functions]] |
[[Category:SQL]] | [[Category:SQL]] |
Latest revision as of 11:55, 22 June 2010
Purpose
Function to return the single row result of an SQL statement
Syntax
SQLVALUES(<SQL statement>)
See Also
CONNECTED(), GATEWAY(), LOGIN, LOGOUT, MODIFY GATEWAY, SET GATEWAY
Description
The SQLVALUES() function executes the <SQL statement> and returns the result as a string. The required <SQL statement> cannot return multiple rows. If a SELECT statement is specified it must be a singleton select.
The SQLVALUES() function can only be used with an active gateway connection.
Example
login "Oracle","node","user","Password" // Count the number of records in the employee table cTotal = sqlvalues("SELECT COUNT(*) FROM emp") total=val(cTotal) // Count the number of records in the employee table matching the key "Mr" cTotal = sqlvalues("SELECT COUNT(*) FROM emp WHERE title = 'Mr'")
Products
Recital, Recital Server