So far we have not found any actual schema for the database -- that is, the structure of the database tables and columns. This is another area that databases tend to differ in rather creative ways. FRED contains all of the CREATE TABLE statements in installation/sql/FRED.sql. Let's take a look and try to spot some potential problems:
CREATE TABLE `#__bannerclient` (
  `cid` int(11) NOT NULL auto_increment,
  `name` varchar(60) NOT NULL default '',
  `extrainfo` text NOT NULL,
  `checked_out` tinyint(1) NOT NULL default '0',
  `checked_out_time` time default NULL,
  PRIMARY KEY  (`cid`)
) TYPE=MyISAM;