通常,当您更新/插入时,您会使用该on duplicate key update
语句。但我正在插入/更新这样的表:
id | neutral text | language | translation
---+--------------+----------+------------
0 | SUBMIT | en | Submit
1 | SUBMIT | cs | Odeslat
2 | SUBMIT | fr | Démarrer
我知道我应该制作 3 张桌子,但这个项目并没有那么大,所以我决定让它变得相当简单。
所以现在,当我想更改或添加翻译时,请执行以下操作:
/*
$this->lang_class->table = the name of my table
$offset = neutral text name
$this->lang = language name
$value = new translation
*/
$this->debug("Translate attempt!<br />");
//Try to update, insert will be performed if update returns 0 rows
$update = $this->pdo->prepare("UPDATE `{$this->lang_class->table}` SET content='$value' WHERE lang='{$this->lang}' AND name='$offset'");
$update->execute(); //try to update
if($update->rowCount()==0) { //If no update happened, insert
$this->debug("Creating new translation entry.<br />");
$this->execsql("INSERT INTO `{$this->lang_class->table}` (lang, name, content) VALUES ('{$this->lang}', '$offset', '$value')");
}
return $value;
问题是,有时可能会发生新翻译与旧翻译匹配的情况。在这种情况下,UPDATE 将返回 0 行并执行 INSERT。
那么,如果我只想坚持一张桌子,我应该使用什么方法?