<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
  <meta content="text/html;charset=windows-1252"
 http-equiv="Content-Type">
  <title></title>
</head>
<body bgcolor="#ffffff" text="#000000">
Bemer wrote:
<blockquote cite="mid193642071922404@lycos-europe.com" type="cite">
  <pre wrap="">After my upgrade to mythtv version 19 I get alot of errors in my /var/log/mysql/mysqld.err like the one below:

060622 18:54:52 [Warning] './mythconverg/settings' had no or invalid character set, and default character set is multi-byte, so character column sizes may have changed

In my mythfrontend.log it looks like this:
2006-06-21 17:14:28.339 DB Error (Insert Keybinding):
Query was:
INSERT INTO keybindings (context, action, description, keylist, hostname) VALUES ( 'TV Playback', 'SPEEDDEC', 'Decrease the p
layback speed', 'J', 'HTPC' );
Driver error was [2/1062]:
QMYSQL3: Unable to execute query
Database error was:
Duplicate entry 'TV Playbac-SPEEDDEC-HTPC' for key 1

What has gone wrong? and how do I  correct this?</pre>
  <pre wrap="">
<hr size="4" width="90%">
_______________________________________________
mythtv-users mailing list
<a class="moz-txt-link-abbreviated" href="mailto:mythtv-users@mythtv.org">mythtv-users@mythtv.org</a>
<a class="moz-txt-link-freetext" href="http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users">http://mythtv.org/cgi-bin/mailman/listinfo/mythtv-users</a>
  </pre>
</blockquote>
You are trying to create an entry for which there is already a
keymapping.  Try this:<br>
update keybindings set keylist='J' where context='TV Playback' and
action='SPEEDDEC' and hostname='HTPC';<br>
<br>
W<br>
</body>
</html>