Product Documentation
Virtuoso ADE SKILL Reference
Product Version IC23.1, November 2023

axlRenameOutputsColumn

axlRenameOutputsColumn(
x_mainSDB
t_columnName
t_newColumnName
)
=> t / nil

Description

Changes the name of a user-defined column in the outputs table.

Arguments

x_mainSDB

Handle to the main setup database.

t_outputName

Name of the user-defined column to be renamed.

t_newColumnName

New name to be assigned to the user-defined column.

Value Returned

t

The user-defined column is renamed.

nil

The user-defined column is not renamed.

Examples

The following example renames the user-defined column myColumn to myRemarks.

session = axlGetWindowSession()
=> "session0"
sdb= axlGetMainSetupDB(session)
=> 1001
axlRenameOutputsColumn(sdb "myRemarks" "myColumn")
=> t

Return to top
 ⠀
X