@DbTitle (JavaScript)

Returns the label of the current database.

Defined in

@Functions (JavaScript)

Syntax

@DbTitle() : string
Return value Description
string Database label.

Examples

This example returns the name and label of the current database.
function p(stuff) {
	print("<<<" + stuff + ">>>");
}

p("Database name = " + @DbName());
p("Database label = " + @DbTitle());