English 中文(简体)
Zend_Db不删除表格。
原标题:Zend_Db does not delete table row

Does anyone know, if there is a bug in CRUD in delete operations. DB Adapter:

$this->_db = Zend_Registry::get("db");

我也这样做:

$sql = "DELETE FROM premium_items WHERE id =  $id ";
                    $stmt = new Zend_Db_Statement_Pdo($this->_db, $sql); 
                    return $stmt->execute();

以及

$sql = "DELETE FROM premium_items WHERE id = ?";
                $stmt = new Zend_Db_Statement_Pdo($this->_db, $sql); 
                return $stmt->execute(array($id));

以及

$this->_db->delete( premium_items , "id =  $id ");

Each variant works without any errors but does not do what it has to do. What can I do in such situation ?

最佳回答

附有<代码>Zend_Db_Adapter,尝试:

$this->_db->delete( premium_items , array("id = ?" => $id));

或者,在这种情况下,你可以:

$this->_db->delete( premium_items ,  id =   . (int)$id);

(如果你重新利用愤怒,你把它 cast!)

问题回答

在您的模式中(Zend_Db_Table_Abstract):

$row = $this->find($id)->current();
$row->delete();

$db = $this->getAdapter();
$db->delete($table, $db->quoteInto("id = ?", $id));




相关问题
what is wrong with this mysql code

$db_user="root"; $db_host="localhost"; $db_password="root"; $db_name = "fayer"; $conn = mysqli_connect($db_host,$db_user,$db_password,$db_name) or die ("couldn t connect to server"); // perform query ...

Users asking for denormalized database

I am in the early stages of developing a database-driven system and the largest part of the system revolves around an inheritance type of relationship. There is a parent entity with about 10 columns ...

Easiest way to deal with sample data in Java web apps?

I m writing a Java web app in my free time to learn more about development. I m using the Stripes framework and eventually intend to use hibernate and MySQL For the moment, whilst creating the pages ...

join across databases with nhibernate

I am trying to join two tables that reside in two different databases. Every time, I try to join I get the following error: An association from the table xxx refers to an unmapped class. If the ...

How can I know if such value exists in database? (ADO.NET)

For example, I have a table, and there is a column named Tags . I want to know if value programming exists in this column. How can I do this in ADO.NET? I did this: OleDbCommand cmd = new ...

Convert date to string upon saving a doctrine record

I m trying to migrate one of my PHP projects to Doctrine. I ve never used it before so there are a few things I don t understand. In my current code, I have a class similar to this: class ...

热门标签