With random data or with your own data?
1) With random data:
from gluon.contrib.populate import populate
populate(db.table,1000) # will fill db.table with 1000 records
2) With your own data
I depends on where the data is. You can create a controller action
that loops and
db.table.insert(field='value',...)
On Nov 22, 3:47 am, harshit agrawal <
harsh.agrawal2...@gmail.com>
wrote: