ExecuteSqlResponseItemResultSet¶
-
class
oci.database_tools_runtime.models.ExecuteSqlResponseItemResultSet(**kwargs)¶ Bases:
objectResult set generated from the query.
Methods
__init__(**kwargs)Initializes a new ExecuteSqlResponseItemResultSet object with values from keyword arguments. Attributes
countGets the count of this ExecuteSqlResponseItemResultSet. has_moreGets the has_more of this ExecuteSqlResponseItemResultSet. itemsGets the items of this ExecuteSqlResponseItemResultSet. limitGets the limit of this ExecuteSqlResponseItemResultSet. metadataGets the metadata of this ExecuteSqlResponseItemResultSet. offsetGets the offset of this ExecuteSqlResponseItemResultSet. -
__init__(**kwargs)¶ Initializes a new ExecuteSqlResponseItemResultSet object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class):
Parameters: - metadata (list[oci.database_tools_runtime.models.ExecuteSqlResponseItemResultSetMetadata]) – The value to assign to the metadata property of this ExecuteSqlResponseItemResultSet.
- items (list[dict(str, object)]) – The value to assign to the items property of this ExecuteSqlResponseItemResultSet.
- has_more (bool) – The value to assign to the has_more property of this ExecuteSqlResponseItemResultSet.
- count (int) – The value to assign to the count property of this ExecuteSqlResponseItemResultSet.
- offset (int) – The value to assign to the offset property of this ExecuteSqlResponseItemResultSet.
- limit (int) – The value to assign to the limit property of this ExecuteSqlResponseItemResultSet.
-
count¶ Gets the count of this ExecuteSqlResponseItemResultSet. The number of rows returned.
Returns: The count of this ExecuteSqlResponseItemResultSet. Return type: int
-
has_more¶ Gets the has_more of this ExecuteSqlResponseItemResultSet. Specifies whether the result set has more rows.
Returns: The has_more of this ExecuteSqlResponseItemResultSet. Return type: bool
-
items¶ Gets the items of this ExecuteSqlResponseItemResultSet. All rows in the result set.
Returns: The items of this ExecuteSqlResponseItemResultSet. Return type: list[dict(str, object)]
-
limit¶ Gets the limit of this ExecuteSqlResponseItemResultSet. Maximum number of rows returned from the query.
Returns: The limit of this ExecuteSqlResponseItemResultSet. Return type: int
-
metadata¶ Gets the metadata of this ExecuteSqlResponseItemResultSet. Metadata of the column.
Returns: The metadata of this ExecuteSqlResponseItemResultSet. Return type: list[oci.database_tools_runtime.models.ExecuteSqlResponseItemResultSetMetadata]
-
offset¶ Gets the offset of this ExecuteSqlResponseItemResultSet. The first row returned in the result set.
Returns: The offset of this ExecuteSqlResponseItemResultSet. Return type: int
-