Save_report_database, Usage, Options – Altera Quartus II Scripting User Manual

Page 396: Description, Example, Save_report_database –266

Advertising
background image

3–266

Chapter 3: Tcl Packages & Commands

report

Quartus II Scripting Reference Manual

© July 2013

Altera Corporation

save_report_database

Usage

save_report_database

Options

None

Description

Saves the report database, including any new report panel.

Example

load_package report
project_open chiptrip
load_report

# Set panel name and id
set panel {Fitter||Fitter Settings}
set id [get_report_panel_id $panel]

# If panel exists, add a row to it. Otherwise, print an error message.
if {$id != -1} {
add_row_to_table -id $id {{New Field} Yes No}
# Save the changes to the report database
save_report_database
} else {
puts "Error: Table $panel does not exist."
}

unload_report
project_close

Advertising