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();