示例#1
0
 protected static function _unique_identifier($class = null)
 {
     $table = static::_class_to_table($class);
     $pk = DBSchema::primary_key($table);
     return '"' . $table . '"."' . join('", "' . $table . '"."', $pk) . '"';
 }