Load on demand Table \ Grid

We would like to create a quick and dirty example of a table with data that should represents data straight from our DB.

Whats the fastest way to do that? we want the load on demand to be automatically, and pagination as well.

We have heard about the sql container , but :

  1. it looks pretty complicated for a quick and dirty mockup
  2. it allows persistince to take place and we are against that.

Thanks

The only quick and easy way is the SQLContainer; the other option is to handle SQL yourself, and use an IndexedContainer. If you don’t like perstiting objects, you can always extend the SQLConatiner and disable the feature.