cursor = database.cursor("select * from customer order by ID"); while(cursor.next()) { }
Customers by ID
click on ID to remove
ID Name Address City State ZIP Telephone
write(cursor.ID); write(cursor.name); write(cursor.address); write(cursor.city); write(cursor.state); write(cursor.zip); write(cursor.phone);

Home