<?xml version="1.0" ?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/"
xmlns:annotate="http://purl.org/rss/1.0/modules/annotate/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
<!--
	This feed generated for Anonymous
	More info at http://naklon.info/rss/about.htm
-->
<channel>
<title>HeidiSQL User Forum</title>
<link>http://www.heidisql.com/forum/</link>
<description>MySQL made easy</description>
<managingEditor>heidisql@anse.de</managingEditor>
<docs>http://blogs.law.harvard.edu/tech/rss</docs>
<generator>RSS Feed 2.2.4</generator>
<language>en</language>
<lastBuildDate>Thu, 04 Dec 2008 00:26:07 GMT</lastBuildDate>
<image>
	<url>http://www.heidisql.com/forum/../images/heidisql_logo.png</url>
	<title>HeidiSQL User Forum</title>
	<link>http://www.heidisql.com/forum/</link>
	<width>232</width>
	<height>117</height>
</image>
<item>
<title>Feature discussion :: RE: inserting sequential records into a table.</title>
<category>Feature discussion</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2885#2885</link>
<pubDate>Wed, 03 Dec 2008 23:55:27 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2885#2885</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3779&quot; target=&quot;_blank&quot;&gt;Jacques&lt;/a&gt;&lt;br /&gt;

Posted: Thursday, 2008 December 4 - 1:55 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Thankyou Simkin,
&lt;br /&gt;
 that looks very promising but the `tag` also has to be sequentially incremented and could start with any number. 
&lt;br /&gt;
initially I got the error &amp;quot;tag 2001 already exists&amp;quot; because tags must be unique.
&lt;br /&gt;

&lt;br /&gt;
So I found the procedure in mysql.proc and deleted it.
&lt;br /&gt;
then did the following:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;CREATE PROCEDURE seqInsert &amp;#40;i INT&amp;#41; 
&lt;br /&gt;
BEGIN&amp;nbsp; &amp;nbsp;DECLARE count INT DEFAULT 1;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; WHILE count &amp;lt;= i DO
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; INSERT INTO tag_virtual &amp;#40;tag, parent, descriptor, priority, role&amp;#41; VALUES &amp;#40;&amp;#40;2000 + count&amp;#41;, '0', CONCAT&amp;#40;'Announcement ', count&amp;#41;, '127', 'Announcement'&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp; SET count = count + 1;&amp;nbsp; &amp;nbsp;END WHILE; END; &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
and now when I do 
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;CALL seqinsert&amp;#40;10&amp;#41;; &lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
I get
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;/* SQL Error: FUNCTION siteconfigDB.CONCAT does not exist */&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Which I didn't get the first time. Odd. 
&lt;br /&gt;
I think I broke something &lt;img src=&quot;http://www.heidisql.com/forum/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
regards
&lt;br /&gt;
Robert&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jacques</dc:creator>
<dc:subject>Feature discussion</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2868#2868" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2885</comments>
</item>
<item>
<title>General :: Why can't I update directly from the results table anymore?</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2883#2883</link>
<pubDate>Wed, 03 Dec 2008 18:29:09 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2883#2883</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3788&quot; target=&quot;_blank&quot;&gt;Evillen&lt;/a&gt;&lt;br /&gt;
Subject: Why can't I update directly from the results table anymore?&lt;br /&gt;
Posted: Wednesday, 2008 December 3 - 20:29 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi
&lt;br /&gt;

&lt;br /&gt;
I previously used rev.1587 &amp;amp; earlier of HeidiSQL but have recently been using rev.1832. Many of the changes are great - however one apparent change seems entirely retrograde to me:
&lt;br /&gt;

&lt;br /&gt;
Previously I could run a query and the results would be displayed below my query in the results table. Then if I wanted to update some data from a record within my results I could just select the field, edit and then down-arrow - voila the appropriate SQL Update query was run (&amp;amp; could be copied from the transcript log too).
&lt;br /&gt;

&lt;br /&gt;
It appears that this easy means of updating selected records has been removed? 
&lt;br /&gt;

&lt;br /&gt;
Is there some checkbox hidden away somewhere that I need to configure?
&lt;br /&gt;

&lt;br /&gt;
Please help - I don't like to use the older version, but if I lose this MOST useful feature I will have to.
&lt;br /&gt;

&lt;br /&gt;
Regards
&lt;br /&gt;
Len&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Evillen</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2883#2883" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2883</comments>
</item>
<item>
<title>Feature discussion :: Buy cheap Nizoral online</title>
<category>Feature discussion</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2882#2882</link>
<pubDate>Wed, 03 Dec 2008 18:17:37 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2882#2882</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3787&quot; target=&quot;_blank&quot;&gt;sedarftoned&lt;/a&gt;&lt;br /&gt;
Subject: Buy cheap Nizoral online&lt;br /&gt;
Posted: Wednesday, 2008 December 3 - 20:17 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;color: green&quot;&gt;Buy cheap Nizoral online without prescription - Professional Shopping&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;&lt;span style=&quot;color: green&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;Fast worldwide shipping! No prescription needed! High quality! Discount system!&lt;/span&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;
 
&lt;br /&gt;
&lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;color: red&quot;&gt;Buy cheap Nizoral online&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; - &lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;color: blue&quot;&gt;Order Nizoral WITHOUT PRESCRIPTION&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; &lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;- HERE&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;&lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;img src=&quot;http://worldpillstore.net/canadian-drugs-shop/nizoral.jpg&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;color: red&quot;&gt;Buy cheap Nizoral online&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; - &lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;&lt;span style=&quot;color: blue&quot;&gt;Order Nizoral WITHOUT PRESCRIPTION&lt;/span&gt;&lt;/span&gt;&lt;/span&gt;&lt;/a&gt; &lt;span style=&quot;font-weight: bold&quot;&gt;&lt;span style=&quot;font-size: 18px; line-height: normal&quot;&gt;- HERE&lt;/span&gt;&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;&lt;a href=&quot;http://canadian-meds-shop.com/item.php?id=787&amp;amp;aid=8496&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;&lt;img src=&quot;http://worldpillstore.net/canadian-drugs-shop/header.gif&quot; border=&quot;0&quot; /&gt;&lt;/a&gt;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;ul&gt;
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral
&lt;br /&gt;
&lt;li&gt; buy Nizoral cheap
&lt;br /&gt;
&lt;li&gt; buy 500 mg Nizoral
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral free fedex
&lt;br /&gt;
&lt;li&gt; buy Nizoral online with paypal
&lt;br /&gt;
&lt;li&gt; buy Nizoral in the uk
&lt;br /&gt;
&lt;li&gt; buy Nizoral online with a debit card
&lt;br /&gt;
&lt;li&gt; where to buy Nizoral
&lt;br /&gt;
&lt;li&gt; buy Nizoral without a prescription
&lt;br /&gt;
&lt;li&gt; buy Nizoral cod
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral online
&lt;br /&gt;
&lt;li&gt; buy Nizoral c.o.d.
&lt;br /&gt;
&lt;li&gt; buy Nizoral diet pill
&lt;br /&gt;
&lt;li&gt; buy Nizoral online.com
&lt;br /&gt;
&lt;li&gt; buy cheap diet Nizoral pill
&lt;br /&gt;
&lt;li&gt; buy Nizoral diet pills
&lt;br /&gt;
&lt;li&gt; where buy Nizoral
&lt;br /&gt;
&lt;li&gt; buy Nizoral uk
&lt;br /&gt;
&lt;li&gt; buy Nizoral online without prescription
&lt;br /&gt;
&lt;li&gt; Nizoral buy Nizoral
&lt;br /&gt;
&lt;li&gt; buy Nizoral in mo
&lt;br /&gt;
&lt;li&gt; where can i buy Nizoral
&lt;br /&gt;
&lt;li&gt; buy in Nizoral uk
&lt;br /&gt;
&lt;li&gt; order buy Nizoral online
&lt;br /&gt;
&lt;li&gt; buy Nizoral fed ex
&lt;br /&gt;
&lt;li&gt; buy Nizoral with mastercard
&lt;br /&gt;
&lt;li&gt; buy pharmacy Nizoral waterview
&lt;br /&gt;
&lt;li&gt; buy cod Nizoral
&lt;br /&gt;
&lt;li&gt; buy Nizoral online cheap
&lt;br /&gt;
&lt;li&gt; buy Nizoral pills
&lt;br /&gt;
&lt;li&gt; Nizoral buy online in stock
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral with dr. prescription
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral online free consult
&lt;br /&gt;
&lt;li&gt; Nizoral to buy
&lt;br /&gt;
&lt;li&gt; buy Nizoral online no prescription
&lt;br /&gt;
&lt;li&gt; buy Nizoral no rx
&lt;br /&gt;
&lt;li&gt; Nizoral buy online
&lt;br /&gt;
&lt;li&gt; buy Nizoral epharmacist
&lt;br /&gt;
&lt;li&gt; buy Nizoral where
&lt;br /&gt;
&lt;li&gt; buy Nizoral c.o.d
&lt;br /&gt;
&lt;li&gt; buy Nizoral without perscription
&lt;br /&gt;
&lt;li&gt; buy Nizoral with no prescription
&lt;br /&gt;
&lt;li&gt; buy Nizoral free consultation
&lt;br /&gt;
&lt;li&gt; buy Nizoral without a credit card
&lt;br /&gt;
&lt;li&gt; buy Nizoral no prescriptions
&lt;br /&gt;
&lt;li&gt; where can i buy Nizoral online
&lt;br /&gt;
&lt;li&gt; buy Nizoral .
&lt;br /&gt;
&lt;li&gt; where to buy Nizoral online
&lt;br /&gt;
&lt;li&gt; &amp;quot;buy Nizoral online&amp;quot;
&lt;br /&gt;
&lt;li&gt; buy Nizoral online no
&lt;br /&gt;
&lt;li&gt; buy Nizoral pay cod
&lt;br /&gt;
&lt;li&gt; buy Nizoral shipped cod
&lt;br /&gt;
&lt;li&gt; buy Nizoral online no rx
&lt;br /&gt;
&lt;li&gt; where can i buy herbal Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral buy on line
&lt;br /&gt;
&lt;li&gt; Nizoral online buy
&lt;br /&gt;
&lt;li&gt; best buy Nizoral
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral under without rx
&lt;br /&gt;
&lt;li&gt; buy Nizoral with out prescription
&lt;br /&gt;
&lt;li&gt; where to buy Nizoral without a prescription
&lt;br /&gt;
&lt;li&gt; where can i buy Nizoral online without a prescription
&lt;br /&gt;
&lt;li&gt; Nizoral +buy +online +cod
&lt;br /&gt;
&lt;li&gt; Nizoral searchers.com q buy Nizoral on line said make
&lt;br /&gt;
&lt;li&gt; where can i buy Nizoral without prescription
&lt;br /&gt;
&lt;li&gt; Nizoral buy cod
&lt;br /&gt;
&lt;li&gt; buy Nizoral without rx
&lt;br /&gt;
&lt;li&gt; buy Nizoral . no prescription
&lt;br /&gt;
&lt;li&gt; nizoral
&lt;br /&gt;
&lt;li&gt; nizoral buy
&lt;br /&gt;
&lt;li&gt; nizoral canada
&lt;br /&gt;
&lt;li&gt; nizoral no prescription
&lt;br /&gt;
&lt;li&gt; nizoral online
&lt;br /&gt;
&lt;li&gt; nizoral prices
&lt;br /&gt;
&lt;li&gt; nizoral purchase
&lt;br /&gt;
&lt;li&gt; nizoral sale
&lt;br /&gt;
&lt;li&gt; nizoral suppliers
&lt;br /&gt;
&lt;li&gt; nizoral tablets
&lt;br /&gt;
&lt;li&gt; nizoral toronto
&lt;br /&gt;
&lt;li&gt; nizoral uk
&lt;br /&gt;
&lt;li&gt; nizoral uk sales
&lt;br /&gt;
&lt;li&gt; nizoral vancouver
&lt;br /&gt;
&lt;li&gt; buy nizoral
&lt;br /&gt;
&lt;li&gt; buy nizoral online
&lt;br /&gt;
&lt;li&gt; buy cheap nizoral
&lt;br /&gt;
&lt;li&gt; canada nizoral
&lt;br /&gt;
&lt;li&gt; cheap nizoral
&lt;br /&gt;
&lt;li&gt; no rx nizoral
&lt;br /&gt;
&lt;li&gt; online nizoral
&lt;br /&gt;
&lt;li&gt; order nizoral
&lt;br /&gt;
&lt;li&gt; order nizoral online
&lt;br /&gt;
&lt;li&gt; purchase nizoral
&lt;br /&gt;
&lt;li&gt; purchase nizoral online
&lt;br /&gt;
&lt;li&gt; uk nizoral
&lt;br /&gt;
&lt;li&gt; il nizoral
&lt;br /&gt;
&lt;li&gt; nizoral vendita
&lt;br /&gt;
&lt;li&gt; acquisto nizoral
&lt;br /&gt;
&lt;li&gt; nizoral senza ricetta
&lt;br /&gt;
&lt;li&gt; nizoral prezzo
&lt;br /&gt;
&lt;li&gt; nizoral prezzi
&lt;br /&gt;
&lt;li&gt; nizoral posologia
&lt;br /&gt;
&lt;li&gt; comprar el nizoral generico
&lt;br /&gt;
&lt;li&gt; nizoral generico
&lt;br /&gt;
&lt;li&gt; el nizoral generico
&lt;br /&gt;
&lt;li&gt; costo nizoral
&lt;br /&gt;
&lt;li&gt; vendo nizoral
&lt;br /&gt;
&lt;li&gt; vendita nizoral
&lt;br /&gt;
&lt;li&gt; prezzo nizoral
&lt;br /&gt;
&lt;li&gt; compra nizoral
&lt;br /&gt;
&lt;li&gt; nizoral espana
&lt;br /&gt;
&lt;li&gt; comprar nizoral
&lt;br /&gt;
&lt;li&gt; venta de nizoral
&lt;br /&gt;
&lt;li&gt; que es nizoral
&lt;br /&gt;
&lt;li&gt; nizoral comprar
&lt;br /&gt;
&lt;li&gt; precio nizoral
&lt;br /&gt;
&lt;li&gt; venta nizoral
&lt;br /&gt;
&lt;li&gt; kopa nizoral
&lt;br /&gt;
&lt;li&gt; nizoral kopa
&lt;br /&gt;
&lt;li&gt; nizoral kop
&lt;br /&gt;
&lt;li&gt; nizoral sverige
&lt;br /&gt;
&lt;li&gt; nizoral pa natet
&lt;br /&gt;
&lt;li&gt; bestalla nizoral
&lt;br /&gt;
&lt;li&gt; acheter nizoral
&lt;br /&gt;
&lt;li&gt; le nizoral
&lt;br /&gt;
&lt;li&gt; achat nizoral
&lt;br /&gt;
&lt;li&gt; vente nizoral
&lt;br /&gt;
&lt;li&gt; nizoral prix
&lt;br /&gt;
&lt;li&gt; acheter du nizoral
&lt;br /&gt;
&lt;li&gt; nizoral kaufen
&lt;br /&gt;
&lt;li&gt; nizoral bestellen
&lt;br /&gt;
&lt;li&gt; nizoral apotheke
&lt;br /&gt;
&lt;li&gt; nizoral preis
&lt;br /&gt;
&lt;li&gt; medikament nizoral
&lt;br /&gt;
&lt;li&gt; rezeptfrei nizoral
&lt;br /&gt;
&lt;li&gt; nizoral rezept
&lt;br /&gt;
&lt;li&gt; nizoral tabletten
&lt;br /&gt;
&lt;li&gt; buy Nizoral cash on delivery
&lt;br /&gt;
&lt;li&gt; buy cheapest Nizoral
&lt;br /&gt;
&lt;li&gt; how to buy Nizoral without a prescription
&lt;br /&gt;
&lt;li&gt; buy Nizoral online us pharmacy
&lt;br /&gt;
&lt;li&gt; buy discount Nizoral
&lt;br /&gt;
&lt;li&gt; where can i buy fda approved Nizoral cod
&lt;br /&gt;
&lt;li&gt; buy Nizoral without doctor
&lt;br /&gt;
&lt;li&gt; Nizoral best buy
&lt;br /&gt;
&lt;li&gt; buy Nizoral no perscription
&lt;br /&gt;
&lt;li&gt; Nizoral no prescription to buy
&lt;br /&gt;
&lt;li&gt; buy Nizoral without a rx
&lt;br /&gt;
&lt;li&gt; buy Nizoral doctor prescription
&lt;br /&gt;
&lt;li&gt; do you know how i can buy Nizoral
&lt;br /&gt;
&lt;li&gt; cheapest place to buy Nizoral
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral no prescription
&lt;br /&gt;
&lt;li&gt; want to buy Nizoral in malaysia
&lt;br /&gt;
&lt;li&gt; buy Nizoral cheap without prescription
&lt;br /&gt;
&lt;li&gt; buy Nizoral without a perscription
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral without prescription
&lt;br /&gt;
&lt;li&gt; where to buy online cheap Nizoral that ships to kentucky
&lt;br /&gt;
&lt;li&gt; where to buy Nizoral by cod
&lt;br /&gt;
&lt;li&gt; Nizoral
&lt;br /&gt;
&lt;li&gt; generic Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral online
&lt;br /&gt;
&lt;li&gt; order Nizoral online
&lt;br /&gt;
&lt;li&gt; buy Nizoral in england
&lt;br /&gt;
&lt;li&gt; buy Nizoral c o d
&lt;br /&gt;
&lt;li&gt; buy cheap Nizoral no perscription
&lt;br /&gt;
&lt;li&gt; ultracet Nizoral hydrocodone Nizoral pain relief cheap
&lt;br /&gt;
&lt;li&gt; order Nizoral
&lt;br /&gt;
&lt;li&gt; cheap Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral diazepam
&lt;br /&gt;
&lt;li&gt; Nizoral on line
&lt;br /&gt;
&lt;li&gt; online pharmacy Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral no prescription
&lt;br /&gt;
&lt;li&gt; purchase Nizoral
&lt;br /&gt;
&lt;li&gt; online Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral side effects
&lt;br /&gt;
&lt;li&gt; Nizoral without a prescription
&lt;br /&gt;
&lt;li&gt; prescription Nizoral
&lt;br /&gt;
&lt;li&gt; discount Nizoral
&lt;br /&gt;
&lt;li&gt; drug Nizoral
&lt;br /&gt;
&lt;li&gt; about Nizoral
&lt;br /&gt;
&lt;li&gt; cheap generic Nizoral
&lt;br /&gt;
&lt;li&gt; what is Nizoral
&lt;br /&gt;
&lt;li&gt; buy generic Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral dosage
&lt;br /&gt;
&lt;li&gt; Nizoral overdose
&lt;br /&gt;
&lt;li&gt; Nizoral addiction
&lt;br /&gt;
&lt;li&gt; Nizoral withdrawal
&lt;br /&gt;
&lt;li&gt; dj Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral without prescription
&lt;br /&gt;
&lt;li&gt; buy generic Nizoral online
&lt;br /&gt;
&lt;li&gt; generic Nizoral online
&lt;br /&gt;
&lt;li&gt; Nizoral 20buy
&lt;br /&gt;
&lt;li&gt; how long does Nizoral stay in your system
&lt;br /&gt;
&lt;li&gt; diazepam Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral pictures
&lt;br /&gt;
&lt;li&gt; Nizoral effects
&lt;br /&gt;
&lt;li&gt; sobredosis de Nizoral
&lt;br /&gt;
&lt;li&gt; what does Nizoral look like
&lt;br /&gt;
&lt;li&gt; Nizoral 10mg
&lt;br /&gt;
&lt;li&gt; buying Nizoral
&lt;br /&gt;
&lt;li&gt; snorting Nizoral
&lt;br /&gt;
&lt;li&gt; wholesale Nizoral cheap
&lt;br /&gt;
&lt;li&gt; side effects of Nizoral
&lt;br /&gt;
&lt;li&gt; purchase Nizoral online
&lt;br /&gt;
&lt;li&gt; Nizoral for sale
&lt;br /&gt;
&lt;li&gt; Nizoral from india
&lt;br /&gt;
&lt;li&gt; online prescription Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral versus Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral more drug uses
&lt;br /&gt;
&lt;li&gt; Nizoral cash on delivery
&lt;br /&gt;
&lt;li&gt; Nizoral uk
&lt;br /&gt;
&lt;li&gt; Nizoral overnight
&lt;br /&gt;
&lt;li&gt; by Nizoral
&lt;br /&gt;
&lt;li&gt; online pharmacies Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral pharmacy
&lt;br /&gt;
&lt;li&gt; Nizoral pills
&lt;br /&gt;
&lt;li&gt; picture of Nizoral mylan 40 milligram
&lt;br /&gt;
&lt;li&gt; no prescription Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral prescription
&lt;br /&gt;
&lt;li&gt; effects of Nizoral
&lt;br /&gt;
&lt;li&gt; buying Nizoral online
&lt;br /&gt;
&lt;li&gt; Nizoral pill
&lt;br /&gt;
&lt;li&gt; Nizoral 20online
&lt;br /&gt;
&lt;li&gt; roche Nizoral
&lt;br /&gt;
&lt;li&gt; que son la ritalina, Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral without rx
&lt;br /&gt;
&lt;li&gt; Nizoral withdrawal symptoms
&lt;br /&gt;
&lt;li&gt; Nizoral 10
&lt;br /&gt;
&lt;li&gt; natural Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral cheap mexican
&lt;br /&gt;
&lt;li&gt; Nizoral 10 mg
&lt;br /&gt;
&lt;li&gt; pharmacy Nizoral
&lt;br /&gt;
&lt;li&gt; drug test Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral oral
&lt;br /&gt;
&lt;li&gt; buy Nizoral drugs
&lt;br /&gt;
&lt;li&gt; Nizoral price
&lt;br /&gt;
&lt;li&gt; Nizoral drug
&lt;br /&gt;
&lt;li&gt; is Nizoral addictive
&lt;br /&gt;
&lt;li&gt; Nizoral 20mg
&lt;br /&gt;
&lt;li&gt; Nizoral vs Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral more drug side effects
&lt;br /&gt;
&lt;li&gt; Nizoral drug test
&lt;br /&gt;
&lt;li&gt; Nizoral vs. Nizoral
&lt;br /&gt;
&lt;li&gt; picture of Nizoral
&lt;br /&gt;
&lt;li&gt; Nizoral generic
&lt;br /&gt;
&lt;li&gt; doctors in kansas city area who will prescribe Nizoral
&lt;br /&gt;
&lt;li&gt; pharmacy rx magic Nizoral
&lt;br /&gt;
&lt;li&gt; Buy Cheap Nizoral Online. Order Nizoral Online. Nizoral No Prescription.
&lt;br /&gt;
&lt;/ul&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>sedarftoned</dc:creator>
<dc:subject>Feature discussion</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2882#2882" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2882</comments>
</item>
<item>
<title>Feature discussion :: RE: inserting sequential records into a table.</title>
<category>Feature discussion</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2881#2881</link>
<pubDate>Wed, 03 Dec 2008 10:27:59 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2881#2881</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=1821&quot; target=&quot;_blank&quot;&gt;siMKin&lt;/a&gt;&lt;br /&gt;

Posted: Wednesday, 2008 December 3 - 12:27 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
This is how you could do it:
&lt;br /&gt;

&lt;br /&gt;
First, you create a stored procedure:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;delimiter //
&lt;br /&gt;

&lt;br /&gt;
CREATE PROCEDURE seqInsert &amp;#40;i INT&amp;#41;
&lt;br /&gt;
BEGIN
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;DECLARE count INT DEFAULT 1;
&lt;br /&gt;

&lt;br /&gt;
&amp;nbsp; &amp;nbsp;WHILE count &amp;lt;= i DO
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;INSERT INTO tag_virtual &amp;#40;tag, parent, descriptor, priority, role&amp;#41;&amp;nbsp; VALUES &amp;#40;'2001', '0', CONCAT&amp;#40;'Announcement ', count&amp;#41;, '127', 'Announcement'&amp;#41;;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;&amp;nbsp; &amp;nbsp;SET count = count + 1;
&lt;br /&gt;
&amp;nbsp; &amp;nbsp;END WHILE;
&lt;br /&gt;
END;
&lt;br /&gt;

&lt;br /&gt;
delimiter ;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
And then you can do this at any time:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;CALL seqinsert&amp;#40;10&amp;#41;;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>siMKin</dc:creator>
<dc:subject>Feature discussion</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2868#2868" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2881</comments>
</item>
<item>
<title>Creating a connection :: www.shoes258.com wholesale newest nike shoes,adidas,hoodys,</title>
<category>Creating a connection</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2880#2880</link>
<pubDate>Tue, 02 Dec 2008 14:38:31 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2880#2880</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3784&quot; target=&quot;_blank&quot;&gt;shoes258&lt;/a&gt;&lt;br /&gt;
Subject: www.shoes258.com wholesale newest nike shoes,adidas,hoodys,&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 16:38 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
We are professional brand shoes,glassess and Accessories supplier in china.
&lt;br /&gt;
Accessories
&lt;br /&gt;
bag:Lv handbag,gucci handbag,channel handbag,fendi handbag,prada handbag,juicy handbag,bubbery bag,chloe bag,CD bag
&lt;br /&gt;
hat; bape hat,gucci hat,lv hat,edhardy hat,new era hat,rmc hat
&lt;br /&gt;
belt:D&amp;amp;G belt, Boss belt,LEVIS belt,LV belt,Gucci belt,DIESEL belt,VERSACE belt,lee belt
&lt;br /&gt;
scarf:lv scarf,gucci scarf,bubbery scarf
&lt;br /&gt;
glassess;Versace Glassess,gucci glassess,lv glassess,prada glassess,D&amp;amp;G glassess,Armani Glassess,chanel glassess
&lt;br /&gt;
We accept big &amp;amp; small quantity order,mixed order and dropship.All the products is in good quality with low price.
&lt;br /&gt;
website: &lt;a href=&quot;http://www.shoes258.com&quot; target=&quot;_blank&quot;&gt;www.shoes258.com&lt;/a&gt;	
&lt;br /&gt;
msn:shoes258@hotmail.com
&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;http://p7.images22.51img1.com/6000/shuangyan617/79cc937ca8f6b5303e17e3e4f6416bb6.jpg&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>shoes258</dc:creator>
<dc:subject>Creating a connection</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2880#2880" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2880</comments>
</item>
<item>
<title>Import/Export :: wholesale nike shox,air max,puma ,prada shoes,Jacket,</title>
<category>Import/Export</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2879#2879</link>
<pubDate>Tue, 02 Dec 2008 14:37:40 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2879#2879</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3784&quot; target=&quot;_blank&quot;&gt;shoes258&lt;/a&gt;&lt;br /&gt;
Subject: wholesale nike shox,air max,puma ,prada shoes,Jacket,&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 16:37 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Welcome to login our website:http://www.shoes258.com 
&lt;br /&gt;
 we are a leading company that wholesales and export of world brand SHOES and CLOTHES(t-shirts,hoodey,coat) and JEANS and BAGS and HAT and watch and Glasses  ipod mp3/mp4,mainly provide
&lt;br /&gt;
1)shoes;nike shoes,(air jordan(1-21.5) series,air force one,air max90, air max87,air max360 ,nike spizike jordanshox,dunk,kobe,foamposite,football,rift)gucci,bape,puma,adidas,timberland,prada,dsquared,D&amp;amp;G,LV,James,ICE,diesel
&lt;br /&gt;
2)exquisite;lv,gucci,prada,chanel,fendi,coach,dior,burberry,juicy,chloe,hermes bags
&lt;br /&gt;
3)brand clothes ;bape,bbc,DSCO,POLO,Replay,lacoste,evisu,Baby,A&amp;amp;f,edhardy,Akademiks,
&lt;br /&gt;
,lrg,hoody and coat jerseys(NBA,NFL)
&lt;br /&gt;
 All with original box packing,hang
&lt;br /&gt;
tags,bar code,Welcome order our products! we will give your best price and 
&lt;br /&gt;
service. 
&lt;br /&gt;
our website: &lt;a href=&quot;http://www.shoes258.com&quot; target=&quot;_blank&quot;&gt;http://www.shoes258.com&lt;/a&gt;
&lt;br /&gt;
&lt;img src=&quot;http://p5.images22.51img1.com/6000/shuangyan617/5f876428684beb52b3d23a732379582f.jpg&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>shoes258</dc:creator>
<dc:subject>Import/Export</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2879#2879" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2879</comments>
</item>
<item>
<title>General :: www.shoes258.com sell nike shoes,Prada,Bape,Timberland,</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2878#2878</link>
<pubDate>Tue, 02 Dec 2008 14:34:04 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2878#2878</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3784&quot; target=&quot;_blank&quot;&gt;shoes258&lt;/a&gt;&lt;br /&gt;
Subject: www.shoes258.com sell nike shoes,Prada,Bape,Timberland,&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 16:34 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
We are a trade and manufacturing company of brand name sport productions in China,
&lt;br /&gt;
welcome to visit our website: &lt;a href=&quot;http://www.shoes258.com&quot; target=&quot;_blank&quot;&gt;http://www.shoes258.com&lt;/a&gt; ,
&lt;br /&gt;
Our productions are:jordan shoes,sell jordan shoes,china jordan shoes,air jordan shoes,nike jordan shoes,michael jordan shoes,buy jordan shoes,jordan shoes b2b.jordan shoes,sell jordan shoes,china jordan shoes,air jordan shoes,nike jordan shoes,michael jordan shoes,buy jordan shoes,jordan shoes b2b.wholesale shoes,wholesale nike shoes,wholesale jordan shoes,wholesale jordans,wholesale sneakers,wholesale clothes,wholesale handbags,wholesale air force ones,air force 1,air force 25,air force 25th,discount shoes,nike shoes,sell nike shoes,nike shoes forum,buy nike shoes ,nike shoes b2b,china nike shoes,supply nike shoes,replica nike shoes ,nike shoes export,putian nike shoes,nike shox vc,nike shox r4,nike dunk. Timberland,Soccer,Adidas shoes, 
&lt;br /&gt;
 ugg boots,a&amp;amp;f jacket,evisu jeans,adida shoes,Christan Auaigier shoes,Christan Auaigier hoody
&lt;br /&gt;
fendi bags,boots,timberbland,gucci,prada,puma shoes
&lt;br /&gt;
discount NiKE/Adidas/Gucci/Bape/Prada/Puma/ shox shoes/ca shoes
&lt;br /&gt;

&lt;br /&gt;
yahoo:shoes258@hotmail.com
&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;http://pe.images22.51img1.com/6000/shuangyan617/e1c1a10be1804e970da8ccf28df305ed.jpg&quot; border=&quot;0&quot; /&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>shoes258</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2878#2878" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2878</comments>
</item>
<item>
<title>Import/Export :: HeidiSQL - Exports are allways ending in frozen GUI</title>
<category>Import/Export</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2876#2876</link>
<pubDate>Tue, 02 Dec 2008 09:31:43 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2876#2876</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3748&quot; target=&quot;_blank&quot;&gt;redlabour&lt;/a&gt;&lt;br /&gt;
Subject: HeidiSQL - Exports are allways ending in frozen GUI&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 11:31 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hi,
&lt;br /&gt;

&lt;br /&gt;
after watching the new V4.x Relases and Daily-Builds only every second or third Release is usable for Exports from large Databases.
&lt;br /&gt;

&lt;br /&gt;
In my Case nearly every Export ends in a frozen GUI of HeidiSQL if a Table is larger then 1 MByte.
&lt;br /&gt;

&lt;br /&gt;
This time it gets frozen with heidisql.r2085
&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;http://www.politikstube.de/screenshots/heidi.jpg&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;http://www.politikstube.de/screenshots/heidi2.jpg&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;img src=&quot;http://www.politikstube.de/screenshots/heidi3.jpg&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
Can someone work on the export Function of HeidiSQl please?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>redlabour</dc:creator>
<dc:subject>Import/Export</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2876#2876" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2876</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2875#2875</link>
<pubDate>Tue, 02 Dec 2008 02:15:58 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2875#2875</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3375&quot; target=&quot;_blank&quot;&gt;servertude&lt;/a&gt;&lt;br /&gt;
Subject: sorry&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 4:15 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
ok thats a bummer.  I guess I can only refer you to HeidiSQL!  jHeidi will eventually be more compatible, thanks for giving it a try.
&lt;br /&gt;

&lt;br /&gt;
- Bill&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>servertude</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2875</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2874#2874</link>
<pubDate>Tue, 02 Dec 2008 02:13:40 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2874#2874</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3779&quot; target=&quot;_blank&quot;&gt;Jacques&lt;/a&gt;&lt;br /&gt;

Posted: Tuesday, 2008 December 2 - 4:13 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
That was experimental to see if could get any further. There are in fact three databases but the user doesn't have access to the first one.
&lt;br /&gt;
this is what happens if I leave it out:
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;show databases
&lt;br /&gt;
select version&amp;#40;&amp;#41;
&lt;br /&gt;
show tables from `mysql`
&lt;br /&gt;
show variables
&lt;br /&gt;
show full processlist
&lt;br /&gt;
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException&amp;#58; Access denied for user&amp;#58; 'crewpc@192.168.100.69' to database 'mysql'
&lt;br /&gt;
show /*!50002 global*/ status&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
It's always worked fine with HeidiSQL, though.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jacques</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2874</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2873#2873</link>
<pubDate>Tue, 02 Dec 2008 02:09:21 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2873#2873</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3375&quot; target=&quot;_blank&quot;&gt;servertude&lt;/a&gt;&lt;br /&gt;
Subject: one more thing&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 4:09 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Im surmising that you put a database siteConfigDB in the &amp;quot;databases&amp;quot; field on the connection dialog.  You could remove that and see if you get any further, but you will definitely run into other issues as I dont think jHeidi even works on mysql 4 but I havent done any testing of it in a while.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>servertude</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2873</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2872#2872</link>
<pubDate>Tue, 02 Dec 2008 00:56:11 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2872#2872</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3779&quot; target=&quot;_blank&quot;&gt;Jacques&lt;/a&gt;&lt;br /&gt;

Posted: Tuesday, 2008 December 2 - 2:56 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
ohhh. Okay.
&lt;br /&gt;
Thanks.
&lt;br /&gt;
I wonder if its time &lt;span style=&quot;font-style: italic&quot;&gt;we &lt;/span&gt;moved to a later version of MySQL.
&lt;br /&gt;

&lt;br /&gt;
Regards
&lt;br /&gt;
Robert&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jacques</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2872</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2871#2871</link>
<pubDate>Tue, 02 Dec 2008 00:33:40 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2871#2871</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3375&quot; target=&quot;_blank&quot;&gt;servertude&lt;/a&gt;&lt;br /&gt;
Subject: MySQL 3?&lt;br /&gt;
Posted: Tuesday, 2008 December 2 - 2:33 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Are you running mysql 3? 
&lt;br /&gt;

&lt;br /&gt;
mysqld  Ver 3.23.49 for pc-linux-gnu on i686
&lt;br /&gt;

&lt;br /&gt;
Currently jHeidi only supports mysql  &amp;gt;=5.0
&lt;br /&gt;
We will be adding some backward compatible code when jHeidi hits the beta stage.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>servertude</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2871</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2870#2870</link>
<pubDate>Mon, 01 Dec 2008 23:13:04 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2870#2870</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3779&quot; target=&quot;_blank&quot;&gt;Jacques&lt;/a&gt;&lt;br /&gt;

Posted: Tuesday, 2008 December 2 - 1:13 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello Bill,
&lt;br /&gt;
Thanks for replying.
&lt;br /&gt;

&lt;br /&gt;
There is no host icon in the left pane.
&lt;br /&gt;

&lt;br /&gt;
Platform is Windows XP SP3 but I get the same result with my openSuse Linux laptop
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;java version &amp;quot;1.6.0_10&amp;quot;&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Host is running LEAF linux
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;Linux tch 2.6.23.1-tch2.8.57.8 #1 Sun Nov 11 16&amp;#58;29&amp;#58;44 EST 2007 i686 unknown
&lt;br /&gt;

&lt;br /&gt;
mysqld&amp;nbsp; Ver 3.23.49 for pc-linux-gnu on i686&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
SQL log says:
&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Code:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;code&quot;&gt;show databases where `database` in &amp;#40;'siteconfigDB'&amp;#41;
&lt;br /&gt;
select version&amp;#40;&amp;#41;
&lt;br /&gt;
show variables
&lt;br /&gt;
com.mysql.jdbc.exceptions.MySQLSyntaxErrorException&amp;#58; You have an error in your SQL syntax near 'where `database` in &amp;#40;'siteconfigDB'&amp;#41;' at line 1
&lt;br /&gt;
show full processlist
&lt;br /&gt;
show /*!50002 global*/ status&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
regards
&lt;br /&gt;
Robert&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jacques</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2870</comments>
</item>
<item>
<title>jHeidi :: RE: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2869#2869</link>
<pubDate>Mon, 01 Dec 2008 09:51:53 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2869#2869</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3375&quot; target=&quot;_blank&quot;&gt;servertude&lt;/a&gt;&lt;br /&gt;
Subject: I have seen this happen a couple of times&lt;br /&gt;
Posted: Monday, 2008 December 1 - 11:51 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
It could be a timing issue in the GUI.
&lt;br /&gt;

&lt;br /&gt;
To verify that the tree was actually loaded, please start jheidi connect to the database in question.
&lt;br /&gt;

&lt;br /&gt;
Double click on the &amp;quot;host&amp;quot; icon in the top of the left pane.  That should force the tree to expand and show you the databases.  I have only seen this very rarely, not sure the cause.
&lt;br /&gt;

&lt;br /&gt;
If that doesnt work then please give more details such as platform, version etc and we can check the log files for an error.
&lt;br /&gt;

&lt;br /&gt;
- Bill&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>servertude</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2869</comments>
</item>
<item>
<title>Feature discussion :: inserting sequential records into a table.</title>
<category>Feature discussion</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2868#2868</link>
<pubDate>Mon, 01 Dec 2008 04:05:38 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2868#2868</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3779&quot; target=&quot;_blank&quot;&gt;Jacques&lt;/a&gt;&lt;br /&gt;
Subject: inserting sequential records into a table.&lt;br /&gt;
Posted: Monday, 2008 December 1 - 6:05 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello There,
&lt;br /&gt;
This is probably more a MySQL question than a Heidi Question:
&lt;br /&gt;
Frequently I need to make a list of sequential entries into a table
&lt;br /&gt;

&lt;br /&gt;
for example
&lt;br /&gt;

&lt;br /&gt;
insert into tag_virtual (tag, parent, descriptor, priority, role)
&lt;br /&gt;
values 
&lt;br /&gt;
('2001','0','Announcement 1','127','Announcement')
&lt;br /&gt;
('2002','0','Announcement 2','127','Announcement')
&lt;br /&gt;
('2003','0','Announcement 3','127','Announcement')
&lt;br /&gt;
('2004','0','Announcement 4','127','Announcement')
&lt;br /&gt;
('2005','0','Announcement 5','127','Announcement')
&lt;br /&gt;
('2006','0','Announcement 6','127','Announcement')
&lt;br /&gt;
('2007','0','Announcement 7','127','Announcement')
&lt;br /&gt;
('2008','0','Announcement 8','127','Announcement')
&lt;br /&gt;
('2009','0','Announcement 9','127','Announcement')
&lt;br /&gt;
('2010','0','Announcement 10','127','Announcement');
&lt;br /&gt;

&lt;br /&gt;
The tag numbers are not always the same but they are always sequential.
&lt;br /&gt;
Is there a simple MySQL query I could run to automate this?&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jacques</dc:creator>
<dc:subject>Feature discussion</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2868#2868" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2868</comments>
</item>
<item>
<title>jHeidi :: jheidi - no database tree in left pane</title>
<category>jHeidi</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2867#2867</link>
<pubDate>Mon, 01 Dec 2008 03:50:19 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2867#2867</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3779&quot; target=&quot;_blank&quot;&gt;Jacques&lt;/a&gt;&lt;br /&gt;
Subject: jheidi - no database tree in left pane&lt;br /&gt;
Posted: Monday, 2008 December 1 - 5:50 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Hello There,
&lt;br /&gt;
when I run jheidi I cannot get the database &amp;quot;tree&amp;quot; to show in the left pane the way that it does in &amp;quot;normal&amp;quot; HeidiSQL. Is this a bug or am I doing something wrong?
&lt;br /&gt;

&lt;br /&gt;
regards
&lt;br /&gt;
Robert&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>Jacques</dc:creator>
<dc:subject>jHeidi</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2867#2867" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2867</comments>
</item>
<item>
<title>Feature discussion :: RE: change shortcut for function</title>
<category>Feature discussion</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2866#2866</link>
<pubDate>Fri, 28 Nov 2008 22:22:45 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2866#2866</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=1125&quot; target=&quot;_blank&quot;&gt;rosenfield&lt;/a&gt;&lt;br /&gt;

Posted: Saturday, 2008 November 29 - 0:22 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Would it be possible to be able to switch the shortcut?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Not currently, but there's a feature request in the tracker, so as soon as someone feels like spending the time to do the preferences GUI required...
&lt;br /&gt;

&lt;br /&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;Quote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;Or is there a trick by editing a config file ?&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Having the shortcuts stored in the registry / config file instead of hardcoded in the application sounds like a good idea as a beginning of full-flexes shortcut customizability.
&lt;br /&gt;

&lt;br /&gt;
The easiest trick for now is to download the source code and Delphi, then change the shortcut and run the compile script.  See &amp;quot;readme for developers&amp;quot; on the front page.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>rosenfield</dc:creator>
<dc:subject>Feature discussion</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2850#2850" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2866</comments>
</item>
<item>
<title>General :: RE: problems with the new DataGrid tab</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2865#2865</link>
<pubDate>Fri, 28 Nov 2008 07:19:23 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2865#2865</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=1821&quot; target=&quot;_blank&quot;&gt;siMKin&lt;/a&gt;&lt;br /&gt;

Posted: Friday, 2008 November 28 - 9:19 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
You made someone very happy anse &lt;img src=&quot;http://www.heidisql.com/forum/images/smiles/icon_smile.gif&quot; alt=&quot;Smile&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
&lt;span style=&quot;font-weight: bold&quot;&gt;* points at himself&lt;/span&gt;
&lt;br /&gt;

&lt;br /&gt;
Unfortunately it introduced a bug, which i have reported here:
&lt;br /&gt;
&lt;a href=&quot;http://code.google.com/p/heidisql/issues/detail?id=889&quot; target=&quot;_blank&quot;&gt;http://code.google.com/p/heidisql/issues/detail?id=889&lt;/a&gt;
&lt;br /&gt;

&lt;br /&gt;
Great work though!&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>siMKin</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2762#2762" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2865</comments>
</item>
<item>
<title>General :: RE: Editing fields</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2864#2864</link>
<pubDate>Fri, 28 Nov 2008 06:54:33 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2864#2864</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;anse&lt;/a&gt;&lt;br /&gt;

Posted: Friday, 2008 November 28 - 8:54 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
Just to be complete: Converted negative floats were &lt;a href=&quot;http://bugs.heidisql.com/826&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;bug #826&lt;/a&gt; and fixed in &lt;a href=&quot;http://changes.heidisql.com/1902&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;r1902&lt;/a&gt;.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>anse</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2846#2846" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2864</comments>
</item>
<item>
<title>General :: RE: problems with the new DataGrid tab</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2863#2863</link>
<pubDate>Fri, 28 Nov 2008 06:49:10 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2863#2863</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=2&quot; target=&quot;_blank&quot;&gt;anse&lt;/a&gt;&lt;br /&gt;

Posted: Friday, 2008 November 28 - 8:49 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
All popup editors can be disabled via preferences. For text fields (varchar, text, longtext ...) we now don't popup the text editor at all but do it inline again, having a button which calls the popup window if needed.
&lt;br /&gt;

&lt;br /&gt;
And tabbing through fields while in editor mode is also possible now, at least for text and numeric fields.
&lt;br /&gt;

&lt;br /&gt;
See &lt;a href=&quot;http://bugs.heidisql.com/829&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;rfe #829&lt;/a&gt; for details if of any interest.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>anse</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2762#2762" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2863</comments>
</item>
<item>
<title>General :: RE: Editing fields</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2854#2854</link>
<pubDate>Thu, 27 Nov 2008 11:07:18 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2854#2854</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=1821&quot; target=&quot;_blank&quot;&gt;siMKin&lt;/a&gt;&lt;br /&gt;

Posted: Thursday, 2008 November 27 - 13:07 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;aschmitt wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;And also the editing of a character field is now adapted.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Yea, at least the popup window is no longer there.
&lt;br /&gt;
But it's still not as smooth as it used to be, &lt;a href=&quot;http://www.heidisql.com/forum/viewtopic.php?t=747#2845&quot; target=&quot;_blank&quot; class=&quot;postlink&quot;&gt;in my opinion&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>siMKin</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2846#2846" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2854</comments>
</item>
<item>
<title>General :: RE: Editing fields</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2853#2853</link>
<pubDate>Thu, 27 Nov 2008 11:02:04 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2853#2853</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=3769&quot; target=&quot;_blank&quot;&gt;aschmitt&lt;/a&gt;&lt;br /&gt;

Posted: Thursday, 2008 November 27 - 13:02 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
You're right. Everything is ok with the latest version 2081.   &lt;img src=&quot;http://www.heidisql.com/forum/images/smiles/icon_redface.gif&quot; alt=&quot;Embarassed&quot; border=&quot;0&quot; /&gt; 
&lt;br /&gt;
And also the editing of a character field is now adapted.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>aschmitt</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2846#2846" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2853</comments>
</item>
<item>
<title>General :: RE: Editing fields</title>
<category>General</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2852#2852</link>
<pubDate>Thu, 27 Nov 2008 10:39:44 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2852#2852</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=1821&quot; target=&quot;_blank&quot;&gt;siMKin&lt;/a&gt;&lt;br /&gt;

Posted: Thursday, 2008 November 27 - 12:39 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;span style=&quot;font-style: italic&quot;&gt;NOT Unsigned&lt;/span&gt;? so, you mean it's &lt;span style=&quot;font-style: italic&quot;&gt;Signed&lt;/span&gt;? (that would have to be the case)
&lt;br /&gt;

&lt;br /&gt;
What is the exact value you enter in the field and if you look at the output of the commands Heidi is sending, what do you see as the update / insert statement?
&lt;br /&gt;

&lt;br /&gt;
I'm using revision 2026 and don't have any problems.&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>siMKin</dc:creator>
<dc:subject>General</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2846#2846" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2852</comments>
</item>
<item>
<title>Feature discussion :: RE: change shortcut for function</title>
<category>Feature discussion</category>
<link>http://www.heidisql.com/forum/viewtopic.php?p=2851#2851</link>
<pubDate>Thu, 27 Nov 2008 10:24:59 GMT</pubDate>
<guid isPermaLink="true">http://www.heidisql.com/forum/viewtopic.php?p=2851#2851</guid>
<description>Author: &lt;a href=&quot;http://www.heidisql.com/forum/profile.php?mode=viewprofile&amp;u=1821&quot; target=&quot;_blank&quot;&gt;siMKin&lt;/a&gt;&lt;br /&gt;
Subject: Re: change shortcut for function&lt;br /&gt;
Posted: Thursday, 2008 November 27 - 12:24 (GMT 2)&lt;br /&gt;
&lt;br /&gt;&lt;span class="postbody"&gt;
&lt;/span&gt;&lt;table width=&quot;90%&quot; cellspacing=&quot;1&quot; cellpadding=&quot;3&quot; border=&quot;0&quot; align=&quot;center&quot;&gt;&lt;tr&gt; 	  &lt;td&gt;&lt;span class=&quot;genmed&quot;&gt;&lt;b&gt;marseillai wrote:&lt;/b&gt;&lt;/span&gt;&lt;/td&gt;	&lt;/tr&gt;	&lt;tr&gt;	  &lt;td class=&quot;quote&quot;&gt;some feature in heidisql are really great such as perspective in data view so i tried to sweetch from SQLYOG to HEIDISQL but several thing still annoy me.
&lt;br /&gt;
The first thing is the impossibility to edit text save in blob. i've contourn this by using text for the column format.&lt;/td&gt;	&lt;/tr&gt;&lt;/table&gt;&lt;span class=&quot;postbody&quot;&gt;
&lt;br /&gt;

&lt;br /&gt;
Why would you save text in a blob field? blob fields are used for binary data.
&lt;br /&gt;
so, i don't think you've countered the problem, i think you simply found a better way  &lt;img src=&quot;http://www.heidisql.com/forum/images/smiles/icon_wink.gif&quot; alt=&quot;Wink&quot; border=&quot;0&quot; /&gt;
&lt;br /&gt;

&lt;br /&gt;
p.s.: &lt;a href=&quot;http://dev.mysql.com/doc/refman/5.0/en/blob.html&quot; target=&quot;_blank&quot;&gt;http://dev.mysql.com/doc/refman/5.0/en/blob.html&lt;/a&gt;&lt;/span&gt;&lt;br /&gt;
</description>
<dc:creator>siMKin</dc:creator>
<dc:subject>Feature discussion</dc:subject>
<annotate:reference rdf:resource="http://www.heidisql.com/forum/viewtopic.php?p=2850#2850" />
<comments>http://www.heidisql.com/forum/posting.php?mode=quote&amp;p=2851</comments>
</item>
</channel>
</rss>

<!-- Page generation time: 0.2014s  - Memory Usage: 1.549 Mb  - GZIP disabled -->