Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.activeviam.com/llms.txt

Use this file to discover all available pages before exploring further.

property Table.row_count : int

The number of rows in the table.

Example

>>> table = session.create_table(
...     "Example",
...     data_types={"Product": "String", "Quantity": "int"},
... )
>>> table.row_count
0
>>> table += ("Book", 3)
>>> table.row_count
1