哪个zend db函数连接到数据库?
$select = new Zend_Db_Select(Zend_Db_Table::getDefaultAdapter());
$select->from(array("t" => "table1"), "*")
->from(array("t2" => "table2"), null)
->where("t.id>0")
->order("id");
$query = $select->query();
$lines = $query->fetchAll(Zend_Db::FETCH_OBJ);
查询();
或
使用fetchall();
答案 0 :(得分:1)
在适配器方法Zend_Db_Adapter_Abstract:_connect
中进行连接。 Zend_Db_Select
buids sql及其query
方法调用适配器方法Zend_Db_Adapter_Abstract::query
因此,在query