Skip to main content
Version: 7.9

system.db.runScalarPrepQuery

This function is used in Python Scripting.

Description

Runs a prepared statement against a database connection just like the runPrepQuery function, but only returns the value from the first row and column. If no results are returned from the query, the special value None is returned.

Client Permission Restrictions

Permission Type: Legacy Database Access

Client access to this scripting function is blocked to users that do not meet the role/zone requirements for the above permission type. This function is unaffected when run in the Gateway scope.

Syntax

system.db.runScalarPrepQuery(query, args, database, tx)

Parameters

TypeParameterDescription
StringqueryA SQL query (typically a SELECT) to run as a prepared statement with placeholders (?) denoting where the arguments go, that should be designed to return one row and one column.
Object[]argsA list of arguments. Will be used in order to match each placeholder (?) found in the query.
StringdatabaseThe name of the database connection to execute against.
StringtxA transaction identifier. If omitted, the query will be executed in its own transaction.

Returns

Object - The value from the first row and first column of the results. - Returns None if no rows were returned.

Scope

Gateway

Syntax

system.db.runScalarPrepQuery(query, args, database, tx)

Parameters

TypeParameterDescription
StringqueryA SQL query (typically a SELECT) to run as a prepared statement with placeholders (?) denoting where the arguments go, that should be designed to return one row and one column.
Object[]argsA list of arguments. Will be used in order to match each placeholder (?) found in the query.
StringdatabaseThe name of the database connection to execute against. If omitted or "", the project's default database connection will be used.
StringtxA transaction identifier. If omitted, the query will be executed in its own transaction.

Returns

Object - The value from the first row and first column of the results. - Returns None if no rows were returned.

Scope

Vision Client

Code Examples

Example #1
# This example would search for the user id of someone based on a typed in username.
name = event.source.parent.getComponent("User Search").text

result = system.db.runScalarPrepQuery("SELECT user_id FROM users WHERE username = ?", [name])
event.source.parent.getComponent("Text Field").data = result