-
|
Is it possible to clone a database? I want to read one drawing, then clone it multiple times and save it with changes as separate documents. |
Beta Was this translation helpful? Give feedback.
Answered by
CEXT-Dan
Jan 30, 2026
Replies: 2 comments 1 reply
-
>>> db=Db.curDb()
>>> db_2=Db.Database(False, True)
>>> db_2.copyFrom(db)
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
PyDb.ErrorStatusException: Exception!(eNotImplementedYet), function copyFrom, Line 145, File PyRxObject.cpp: |
Beta Was this translation helpful? Give feedback.
0 replies
-
|
see if wblock works for you db = Db.curDb()
side = db.wblock()
side.saveAs(path) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
gswifort
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
see if wblock works for you