gpt4 book ai didi

php - 使用 Zend_Db 将 php boolean 值插入 mysql 位列

转载 作者:行者123 更新时间:2023-11-29 14:37:24 25 4
gpt4 key购买 nike

我正在使用 Zend Framework 1.11.4 和 Zend_Db。问题是,我有一个性别列,其值为 0 或 1(BIT(1)),当我设置为 false 时,插入没问题,但是当我设置为 true 时,会出现以下错误:“数据对于列来说太长”性别“位于第 1 行”

我已经调试并验证它是一个 boolean 值!如果为 false(0),则不会出现错误,但如果为 true,则会发生错误(类 Application_Model_UserNodeMapper):

public function save(Application_Model_UserNode $user){  
$sex = $user->getSex();
if($sex == 'm'){
$user->setSex(false); //NO ERROR!!
}
else{
$user->setSex(true); //ERROR!!
}
$data = $user->getProperties();
if(null === ($id = $user->getId())) {
unset($data['id']);
$id = $this->getDbTable()->insert($data);
return $id;
}
else{
$this->getDbTable()->update($data, array('id = ?' => $id));
return null;
}

}

Application_model_UserNode 的代码(一些属性是葡萄牙语的,我已将 sexo 更改为 sex 以澄清问题):

<?php


class Application_Model_UserNode
{
protected $id;
protected $nome_completo;
protected $nome_exibicao;
protected $senha;
protected $status;
protected $email;
protected $sex;
protected $data_nasc;
protected $cidade_id;
protected $pais_id;


function __construct(array $options = null)
{
if (is_array($options)) {
$this->setOptions($options);
}
}

public function __set($name, $value)
{
$method = 'set' . $name;
if (('mapper' == $name) || !method_exists($this, $method)) {
throw new Exception('Invalid userNode property');
}
$this->$method($value);
}

public function __get($name)
{
$method = 'get' . $name;
if (('mapper' == $name) || !method_exists($this, $method)) {
throw new Exception('Invalid guestbook property');
}
return $this->$method();
}

public function setOptions(array $options)
{
$methods = get_class_methods($this);
foreach ($options as $key => $value) {
$method = 'set' . ucfirst($key);
if (in_array($method, $methods)) {
$this->$method($value);
}
}
return $this;
}


public function getId() {
return $this->id;
}

public function setId($id) {
$this->id = $id;
}

public function getNome_completo() {
return $this->nome_completo;
}

public function setNome_completo($nome_completo) {
$this->nome_completo = $nome_completo;
}

public function getNome_exibicao() {
return $this->nome_exibicao;
}

public function setNome_exibicao($nome_exibicao) {
$this->nome_exibicao = $nome_exibicao;
}


public function getSenha() {
return $this->senha;
}

public function setSenha($senha) {
$this->senha = $senha;
}

public function getStatus() {
return $this->status;
}

public function setStatus($status) {
$this->status = $status;
}

public function getEmail() {
return $this->email;
}

public function setEmail($email) {
$this->email = $email;
}

public function getSex() {
return $this->sex;
}

public function setSex($sex) {
$this->sex = $sex;
}

public function getData_nasc() {
return $this->data_nasc;
}

public function setData_nasc($data_nasc) {
$this->data_nasc = $data_nasc;
}


public function getProperties(){
$properties = get_object_vars($this);
return $properties;
}


}

感谢您的帮助!

最佳答案

MySQL 实现的位数据类型不一定是单个位,而是在创建表时可以在 1 到 64 位之间变化。大多数数据库连接器在数据类型转换方面都存在困难,因为 MySQL 位实际上并不是您通常认为的位。正确的解决方案是使用不是 bit 的列类型,而是使用 tinyint(1),如您的评论中所示。

关于php - 使用 Zend_Db 将 php boolean 值插入 mysql 位列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8752915/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com