database.Table.all()
Syntax
all()
Description
Returns all the records in the table.
Example
db = ximport("database")
book = db.connect("book")
r = book.pages.all()
for record in r:
record = id, title, text, image, pagenumber
print title
all()
Returns all the records in the table.
db = ximport("database")
book = db.connect("book")
r = book.pages.all()
for record in r:
record = id, title, text, image, pagenumber
print title