Difference between revisions of "SQLVALUES()"
From Recital Documentation Wiki
Yvonnemilne (Talk | contribs) |
Yvonnemilne (Talk | contribs) |
||
Line 1: | Line 1: | ||
− | |||
− | |||
− | |||
==Class== | ==Class== | ||
Data Connectivity | Data Connectivity | ||
Line 15: | Line 12: | ||
==See Also== | ==See Also== | ||
− | [[ | + | [[CONNECTED()]], [[GATEWAY()]], [[LOGIN]], [[LOGOUT]], [[MODIFY GATEWAY]], [[SET GATEWAY]] |
Line 39: | Line 36: | ||
[[Category:Documentation]] | [[Category:Documentation]] | ||
[[Category:Functions]] | [[Category:Functions]] | ||
+ | [[Category:Data Connectivity]] | ||
+ | [[Category:Data Connectivity Functions]] | ||
+ | [[Category:SQL]] |
Revision as of 11:34, 3 June 2009
Class
Data Connectivity
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 Database Server, Recital Mirage Server, Recital Terminal Developer