NodeBox

Create visual output with Python programming code
Home Download Reference Tutorial Library Gallery About

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