Skip To Content

ListDatabaseSequences

概要

Lists the database sequences in a database.

備考:

At ArcGIS Pro 2.4, this function is only supported for file geodatabases.

構文

ListDatabaseSequences (workspace)
パラメーター説明データ タイプ
workspace

A database that has one or more sequences.

String
戻り値
データ タイプ説明
Object

A list of DatabaseSequence objects. Each object contains properties of the database sequence.

コードのサンプル

ListDatabaseSequences example

List and describe the database sequences in a file geodatabase.

import arcpy

sequences = arcpy.da.ListDatabaseSequences("C:/Data/myGdb.gdb")

for seq in sequences:
    print('Sequence name: {}'.format(seq.name))
    print('Sequence start value: {}'.format(seq.startValue))
    print('Sequence increment value: {}'.format(seq.incrementValue))
    print('Sequence current value: {}'.format(seq.currentValue))

関連トピック