Unsupported Screen Size: The viewport size is too small for the theme to render properly.

Sqlyogtunnel Bug

forums forums SQLyog SQLyog: Bugs / Feature Requests Sqlyogtunnel Bug

  • This topic is empty.
Viewing 2 reply threads
  • Author
    Posts
    • #23424
      peterlaursen
      Participant

      Thanks!

      maybe you are right both of you, and I was wrong!

      we will study this!

    • #23425
      peterlaursen
      Participant
      Code:
      1) For mysql_connect(), you need to publish “SET NAMES (Your Character Code)” everytime after reconnecting to MYSQL.

      We do .. but not if charset is (default)

      this function is called every time:

      Code:
      [code]function SetName ( $mysql )
      {
      global $charset;
      WriteLog ( “Enter SetName” );
      if ( $charset === NULL )
      return;
      $query = 'SET NAMES ' . $charset;
      if ($charset!=”[default]”) {
      yog_mysql_query ( $query, $mysql );
      }
      WriteLog ( “Exit SetName” );
      return;
      }

      [/code]

      note:

      Quote:
      if ($charset!=”[default]”)

      We have reproduced the issue with 'copy ..' using HTTP-tunnel, but this is too simple!

      And still NEVER use the 'default' setting in the connections manager when connecting to a server haveing Utf8/ucs2 as default – except for migration of Unicode data.

    • #23426
      peterlaursen
      Participant

      The bug was in the compiled C-code and not in the tunneller.  It is fixed now.

Viewing 2 reply threads
  • You must be logged in to reply to this topic.