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

Text Column Doesn't Show All Data

forums forums SQLyog SQLyog: Bugs / Feature Requests Text Column Doesn't Show All Data

  • This topic is empty.
Viewing 1 reply thread
  • Author
    Posts
    • #12578
      DAE51D
      Member

      SQLYog Ultimate v9.51

      I have a simple table. When I try to view the PHP serialized data in the TEXT column, it truncates it significantly:

      [attachment=1697:sqlyog_text_column_bug.png]

      Double clicking on the 'serialized_session' column results in the Blob field being completely empty. It seems to default to “Image” as well. However switching to “Text” button on the top left has no effect.

      If I RIGHT+CLICK and copy cell data to clip board, then paste it in the Query editor, you see it is a truncated version of my data.

      Here is the actual raw data as per the mysql command line:

      Code:
      mysql> select * from customers_sessions;
      +———————————-+————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————–+———————+
      | id | serialized_session | session_date |
      +———————————-+————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————–+———————+
      | 1c04520e00195914fa63172a33908ac7 | a:17:{s:9:”logged_in”;i:1;s:15:”customer_object”;O:12:”CustomerUser”:43:{s:10:” * address”;s:0:””;s:10:” * country”;s:2:”US”;s:7:” * city”;s:7:”Redmond”;s:8:” * state”;s:2:”WA”;s:11:” * zip_code”;s:5:”98052″;s:10:” * mailing”;s:1:”1″;s:15:” * password_raw”;N;s:18:” * account_type_id”;s:1:”1″;s:15:” * account_type”;N;s:9:” * domain”;s:11:”vz.com”;s:16:” * videos_viewed”;N;s:20:” * videos_downloaded”;N;s:15:” * videos_rated”;N;s:11:” * comments”;N;s:18:” * pornstar_alerts”;N;s:15:” * genre_alerts”;N;s:16:” * studio_alerts”;N;s:23:” * default_watch_format”;s:2:”12″;s:26:” * default_download_format”;s:2:”14″;s:18:” * display_welcome”;s:1:”0″;s:21:” * display_news_polls”;s:1:”0″;s:19:” * display_advanced”;s:1:”1″;s:18:” * display_toolbar”;s:1:”1″;s:13:” * default_lg”;N;s:7:” * poll”;i:0;s:16:” * subscriptions”;N;s:15:” * transactions”;N;s:5:” * db”;s:7:”vz”;s:8:” * table”;s:9:”customers”;s:11:” * username”;s:6:”daevid”;s:13:” * first_name”;s:6:”Daevid”;s:12:” * last_name”;s:7:”Vincent”;s:8:” * email”;s:15:”[email protected]”;s:11:” * password”;s:40:”a94a8fe5ccb19ba61c4c0873d391e987982fbbd3″;s:16:” * authenticated”;b:0;s:20:” * client_ip_address”;s:13:”192.168.1.106″;s:18:” * last_login_date”;N;s:13:” * login_date”;N;s:14:” * login_tally”;s:6:”564654″;s:5:” * id”;s:6:”781523″;s:12:” * timestamp”;s:19:”2012-01-23 19:46:02″;s:13:” * created_on”;s:19:”2011-11-21 00:00:00″;s:10:” * enabled”;s:1:”1″;}s:2:”id”;s:32:”1c04520e00195914fa63172a33908ac7″;s:12:”search_style”;s:7:”default”;s:11:”fingerprint”;s:32:”b8a81244e0d012a31cc42ff322cfae9f”;s:12:”last_checked”;i:1327369967;s:6:”domain”;s:11:”vz.com”;s:14:”nb_free_videos”;s:1:”0″;s:12:”allow_stream”;s:1:”2″;s:14:”allow_download”;s:1:”2″;s:11:”customer_id”;s:6:”781523″;s:12:”account_type”;s:4:”paid”;s:15:”account_type_id”;s:1:”1″;s:11:”signup_date”;s:19:”2011-11-21 00:00:00″;s:11:”remember_me”;s:1:”1″;s:9:”playlists”;a:0:{}s:14:”clean_username”;b:0;} | 2012-01-23 20:52:47 |
      +———————————-+————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————————–+———————+
      1 row in set (0.00 sec)
    • #33086
      peterlaursen
      Participant

      We do not support PHP serialized data. It is not a MySQL datatype but specifric for PHP. The reason for truncation is probably that there is a NULL byte in the data of the column.

      Could you share a samell dump illustrating the problem?

Viewing 1 reply thread
  • You must be logged in to reply to this topic.