Versions Compared

Key

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

This routine is available starting with SIL Engine™ 2.6.5.

Syntax

...

Table plus
applyColStyleToCelltrue
columnTypess,s,s,s
heading0
multiplefalse
columnAttributesstyle="background:#e5e7ea;font-weight:bold,,style="background:#e5e7ea;font-weight:bold,
enableSortingfalse

Syntax

databaseAvailable(dbstring [, sqlstring])

Package

sql

Alias

Pkg Usage

available(dbstring [, sqlstring])

Description

Excerpt
hiddentrue

Checks if the database is available.

Checks if the database is available. Optionally, it can check also the availability of the results for the SQL passed in as the second parameter.

...

 

...

Parameters

Table plus
applyColStyleToCelltrue
columnTypess,s,s,s
heading0
multiplefalse
enableSortingfalse

Parameter name

Type

Required

Description

dbstring

...

String

...

Yes

Datasource JNDI name or the datasource name. For Jira database, this is set to "jdbc/JiraDS" by default, if exported.

sqlstring

...

String

...

No

SQL string.

Return

...

Type

 boolean Boolean (true/false)

Examples

Example 1

Let's suppose in our examples `TextField` is a custom field text already configured for the current Jira server instance and `TestDB` represents the database resource name configured in the server context. For more details see SQL Data Source Configuration.

...

data sources.

java
Code Block
language
TextField=databaseAvailable("TestDB"); //will set `TextField`'TextField' value to `true`'true'

Example 2

java
Code Block
language
TextField=databaseAvailable("TestDB", "select pname from project"); //will set `TextField`'TextField' value to `true`'true' if the SQL passed in can be executed

Example 3

java
Code Block
language
TextField=databaseAvailable("TestDB", "select pname from inexistentTableName");//will set `TextField`'TextField' value to `false`'false', because the SQL passed in cannot be executed

Example 4

java
Code Block
language
TextField=databaseAvailable("InexistentTestDB", "select pname from project");//will set `TextField`'TextField' value to `false`'false', because the database resource does not exist

...

Note

To configure the data source check the SQL

...

data sources configuration chapter.

See also

Filter by label (Content by label)
showLabelsfalse
max25
showSpacefalse
cqllabel = "

...

system_

...

routine" and space = currentSpace ( )
labels

...

array_

...

routines