static function TableKeyBelongsTo($table, $tablePKey, $foreignRef, $foreignKey = false, $parentKey = '', $parentClass = 'ADODB_Active_Record')
 {
     if (!is_array($tablePKey)) {
         $tablePKey = array($tablePKey);
     }
     $ar = new ADOdb_Active_Record($table, $tablePKey);
     $ar->belongsTo($foreignRef, $foreignKey, $parentKey, $parentClass);
 }