Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何在 zend 中编写此查询:
$tableStatus = mysql_query("SHOW TABLE STATUS LIKE 'table_Name'");
因为我需要获得下一个自动增量编号。
关于什么?
$stmt = $dbAdapter->query("SHOW TABLE STATUS LIKE 'table_name';"); $tableStatus = $stmt->fetchObject();