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

Page 215: Description, Example, Export_database –85

Advertising
background image

Chapter 3: Tcl Packages & Commands

3–85

database_manager

© July 2013

Altera Corporation

Quartus II Scripting Reference Manual

export_database

Usage

export_database <directory>

Options

<directory>: Directory of version-compatible database files to which to write

Description

Exports the project database to version-compatible database files that are placed in the specified directory.

Example

## Open the project, run a compilation, and
## export the project database to
## version-compatible database files
load_package database_manager
load_package flow
set project chiptrip
project_new $project -overwrite
execute_flow -compile
export_database backup
project_close $project

Advertising