Flourish PHP Unframework
This is an archived copy of the forum for reference purposes

Some questions to Wbond

posted by ralph 8 years ago

Should I use Inno DB in order to use the Active Record Class? May I use MyIsam?

Any class for pagination? or should I create a Resultset's build method? Any class to manipulate images?

Read the docs...

  1. Yes you must use it if yu want all the features, yes you can but you cant use all features.
  1. I do the same.
  1. Yes, fImage
posted by anonymous 8 years ago

I would recommend against MyISAM because it does not have foreign key constraints or transactions. Thus you will be manually implementing relationships between tables. Not having transactions means you can't bundle operations together and roll them back as an atomic operation.

You can use fRecordSet for the basis of pagination, but there is also an fPagination class that I haven't quite had time to write full tests for. You can find it at https://github.com/wbond/flourish-alpha/tree/master/fPagination.

posted by wbond 8 years ago