描述
RecordSet 对象是表的轻量级表示。它们是一种既包含方案又包含数据的特殊数据元素。RecordSet 对象也表示通过服务器发送和接收表的方式。
讨论
语法
RecordSet ({table})
参数 | 说明 | 数据类型 |
table | 要加载到 RecordSet 对象中的表。 | String |
属性
属性 | 说明 | 数据类型 |
JSON (只读) | 返回一个字符串形式的几何 Esri JSON 制图表达。 | String |
方法概述
方法 | 说明 |
load (table_path) | 从表导入。 |
save (table_path) | 导出到表。 |
方法
load (table_path)
参数 | 说明 | 数据类型 |
table_path | 要导入的表。 | String |
save (table_path)
参数 | 说明 | 数据类型 |
table_path | 要创建的输出表。 | String |
代码示例
RecordSet 示例
导入服务器工具箱;从服务器工具的指定参数获取记录集。
import arcpy
# Add a custom server toolbox
arcpy.ImportToolbox("http://myserver/arcgis/services;Geocode")
# Get recordset from server tool's first parameter to use as schema
in_recordset = arcpy.GetParameterValue("GeocodeAddress", 0)