database_realName
Returns real database name for an alias.
Target
Signature
1database_realName(alias::string)Returns real database name for an alias.
database_realName is a global callable that can be used wherever an expression is valid. database_realName is part of datasource access. Prefer bind values for visitor input, inspect errors during writes, and keep display escaping separate from SQL handling.
Parameters
alias- Required value of type
string. Supplyaliaspositionally unless the signature shows a keyword form.
Examples
Basic call
1database_realName('contacts')The example shows the call shape; use bind values and checked errors for visitor-supplied data.