ParseTableName (arcpy)

摘要

将表名解析为依赖工作空间的各个组成部分(数据库、所有者、表)。ParseTableName 将返回一个包含已解析表名的字符串,其中的数据库名称、所有者名称和表名以逗号分隔。此工作空间必须是个人数据库、文件数据库或 ArcSDE 地理数据库。

语法

ParseTableName (name, {workspace})
参数说明数据类型
name

Specifies which table will be parsed.

String
workspace

Specifies the workspace for fully qualifying the table name. The workspace must be a personal, file, or ArcSDE geodatabase.

String
返回值
数据类型说明
String

返回已解析为由逗号分隔各个组成部分(数据库名称、所有者名称、表名)的表名。

代码实例

ParseTableName 示例

将表名解析为各个组成部分。

import arcpy

field_name = arcpy.GetParameterAsText(0)
workspace = arcpy.GetParameterAsText(1)

# Parse the table name into database, owner, and table
fullname = arcpy.ParseTableName(field_name, workspace)
database, owner, table = fullname.split(", ")

相关主题

5/10/2014