db_query('BEGIN;');
$qry = "UPDATE testtool.tbl_frage_sprache SET text=convert_from(convert_to(text,'LATIN9'),'UTF8');
UPDATE testtool.tbl_vorschlag_sprache SET text=convert_from(convert_to(text,'LATIN9'),'UTF8') WHERE text<>'' and text is not null AND strpos(text,'ß')=0;";
if($db->db_query($qry))
echo "Aktualiserung erfolgreich";
else
echo "Fehler beim Aktualisieren:".$db->db_last_error();
$db->db_query('COMMIT;');
?>