Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

DataTable $Database.ExecuteQuery(connectionName: string, query: string, parameters: object, timeout: number, parameters: object)

Arguments

string connectionName

...

string query
query to be run
object parameters
parameters set on the query. Optional.
number timeout
request timeout. Optional.
object parameters
arameters set on the query. Optional

Remarks

This method is used to run a query and fetch results from an external database. The connection name is defined on the domain settings with a connection string to database.

Query dialect is based on external database type and directly executed on the database.

Timeout parameter is used to specify the maximum time to wait for the query to execute, if not specified default timeout is used.

Example

Code Block
languagejs
$Database.ExecuteQuery("AppDB", "select * from Users where Id = @Id", 100, {
    Id: "1"
});

See Also