Résumé
Lists the versions the connected user has permission to use.
Discussion
You can specify the path to a connection file as an argument to the function or you can set the workspace environment to the connection file and call the ListVersions function without any arguments. Only those versions the connected user has permissions to use will be included in the list returned by the function.
Syntaxe
ListVersions (sde_workspace)
Paramètre | Explication | Type de données |
sde_workspace | An enterprise geodatabase workspace. | String |
Valeur renvoyée
Type de données | Explication |
String | The string returned from the function containing version names in the enterprise geodatabase the connected user has permissions to use. |
Exemple de code
ListVersions example
Gets the list of versions the user has permissions to use and prints them.
import arcpy
database = "Database Connections/toolboxDEFAULTVersion.sde"
versions = arcpy.ListVersions(database)
# Print the versions available to the user
for version in versions:
print(version)