What does the # symbol mean when used in this sqlite statement

for row in db:rows (“SELECT * FROM test”) do

print (“Row” …row.id)

people [#people +1]

{

name= row.name,

description = row.description,

website = row.website

}

end

Also what does the + 1 signify what does it mean if its 2 or 3?

Thank you for your time

In this case, “people” is a table.   #people gets the length of the table (i.e. the number of records/rows, etc. in the table).

Rob

Thank you

In this case, “people” is a table.   #people gets the length of the table (i.e. the number of records/rows, etc. in the table).

Rob

Thank you