![]() |
Prev | Next |
table_dict = dismod_at.get_table_dict(connection, tbl_name)
str
that specifies the name of the table.
We use the notation
n_row
for the number of rows in
the table.
n_row
, where each element
of the list is a dictionary.
For each dictionaries, the set of keys is the column names in the table
(excluding the primary key
tbl_name_id
).
The value
table_dict[i][col_name]
corresponds to
and the column with name
col_name
and primary key
tbl_name_id = i
.
The python type corresponding to the values in the table are
as follows:
Sql Table | Python |
integer |
int |
real |
float |
text |
str |
null |
None
|
get_table_dict
.