my perl tk application freezes/not responding while connecting to mysql server but it will unfreezes if it's done connecting
#!/usr/bin/perl use strict; use warnings; use Tk; use Tk::ROText; use DBI; use DBD::mysql; our $type="mysql"; our $database="beezynet_db"; our $host="http://www.xsite.com/"; our $port="3306"; our $tablename="topic"; our $user="username123"; our $pwd="**************"; our $dsn="dbi:$type:$database:$host:$port"; my $query; my $queryhandle; our $connect=DBI->connect($dsn,$user,$pwd)or die &mysql_Err; my $mw=new MainWindow; $mw->geometry('400x400'); my $rotext=$mw->ROText()->pack; $query="SELECT count(*) FROM items ORDER BY id ASC"; $queryhandle=$connect->prepare($query); $queryhandle->execute; $queryhandle->bind_columns(undef, \my $id, \my $item_name, \my $item_p +rice); while($queryhandle->fetch()){ $rotext->insert('1.0', "Item: $item_name\t\tPrice: \$item_price"); + # After this it will Respond } $queryhandle->finish; $connect->disconnect; MainLoop;
why it is freezing while connecting? (It's like bulding a socket but in sockets you just need a fileevent).

In reply to Perl/Tk freezes while waiting the data to arrive on mysql server by Muskovitz

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.