maeOpenViolationDb
maeOpenViolationDb(t_sessionName t_testName t_historyName) =>x_dbId/ nil
Description
Opens a connection to the checks and asserts database for the given maestro cellview and returns a unique ID for the connection. You can use this ID to read or modify the database and its attached waiver SQL database using other SKILL functions. You must close this connection using maeCloseViolationDb to release the connection and complete the transactions on the database.
Arguments
Value Returned
Examples
Opens a database, performs a task on it, and then closes it.
let( (dbId)
dbId = maeOpenViolationDb( "fnxSession0" "demo_top:1" "Interactive.1")
when( dbId != -1
maeWaiveViolation( dbId ?objectName "I19.PMO" ?objectType "instance" ?checkerName "testLib/demo_top/Constr_3" ?analysisName "tran" ?comment "waiving")
maeCloseViolationDb(dbId)
)
Related Topics
Return to top