* A class that implements the DB interface for Postgres
* Note: This class uses ADODB and returns RecordSets.
*
- * $Id: Postgres.php,v 1.279 2005/11/04 04:23:16 chriskl Exp $
+ * $Id: Postgres.php,v 1.280 2006/01/04 02:45:50 chriskl Exp $
*/
// @@@ THOUGHT: What about inherits? ie. use of ONLY???
}
break;
case 'bytea':
+ case 'bytea[]':
$value = $this->escapeBytea($value);
case 'text':
+ case 'text[]':
$n = substr_count($value, "\n");
$n = $n < 5 ? 5 : $n;
$n = $n > 20 ? 20 : $n;
echo "</textarea>\n";
break;
case 'character':
+ case 'character[]':
$n = substr_count($value, "\n");
$n = $n < 5 ? 5 : $n;
$n = $n > 20 ? 20 : $n;