the code coverage problem

ljr

Member
I am a developer using PLSQL. I want to know how to solve the code coverage problem caused by multiple people developing the same package, and whether the product can provide locking operation during development
 
If you want to resolve locking and isolation/collaboration issues during development, it is recommended to use a version control system. The version control system can lock the source files or can allow simultaneous development on the same files and merge the changes later with conflict detection.
 
Back
Top