我有一个VARCHAR(4)栏,接收来自超过4个特性的投入的数据。 然而,这是不错的,而且我自然地(或我这样认为)让我的我的我的后勤部停止其性质。
奇怪的是,当我对数据库浏览结果进行观察之后,在PHP(Using the PDO的驾驶员)中,整条插座正在显示,而不仅仅是4个特性。
如果我对我的SQL CLI进行“选举调查”,它只恢复4个特性。 即使在我做我的假设时,只有4个特性显示。
任何可能造成这种奇怪的不一致的想法?
Note that these characters are all numbers.
Edit:根据要求,这里有某种代谢法,代表了储蓄/债务法:
查封:
$data = array(
name_first4 => $fields[ num ],
// name_first4 is the column name with VARCHAR(4)
);
$where = $this->getTable()->getAdapter()->quoteInto( id = ? , $id);
$this->getTable()->update($data,$where);
Fetching, using Zend_Db_Table:
$row = $this->getTable()->fetchRow(
$this->getTable()->select()->where( id=? ,$data)
);