How is this (SQLite Code), working:
csv_rt_bat_c_x = db.executesql('select * from csv_rt_bat_c LIMIT 100')
converted into Web2Py DAL?
Thats working:
csv_rt_bat_c_x = db().select(db.csv_rt_bat_c.ALL)
But how to add the 100 LIMIT (to speed it up for development) ?