<?xml version="1.0" encoding="UTF-8" standalone="yes"?>
<rss version="2.0">
  <channel>
  <title>comp.databases.mysql Google Group</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql</link>
  <description>MySQL RDBMS technical discussions.</description>
  <language>en</language>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/6239267bc33dda8d?show_docid=6239267bc33dda8d</link>
  <description>
  Yes, they do. But the do not recommend using pools which have &lt;br&gt; connections which are unused for great lengths of time.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/6239267bc33dda8d?show_docid=6239267bc33dda8d</guid>
  <author>
  jstuck...@attglobal.net
  (Jerry Stuckle)
  </author>
  <pubDate>Sat, 11 Nov 2009 03:29:52 UT
</pubDate>
  </item>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/8dda4f8b787553ae?show_docid=8dda4f8b787553ae</link>
  <description>
  Well - I believe that they do recommend use of connection pools. &lt;br&gt; Arne
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/8dda4f8b787553ae?show_docid=8dda4f8b787553ae</guid>
  <author>
  a...@vajhoej.dk
  (Arne Vajhøj)
  </author>
  <pubDate>Sat, 11 Nov 2009 03:01:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/c99088a98e9dd905?show_docid=c99088a98e9dd905</link>
  <description>
  It is also from the perspective of Oracle, SQL Server and DB2. All of &lt;br&gt; them recommend AGAINST keeping pools of unused connections open for &lt;br&gt; extended periods. The needlessly use system resources which could be &lt;br&gt; used for other things - and can slow down the entire system. &lt;br&gt; And FYI - MySQL is NOT the first SQL database I ever dealt with. That
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/c99088a98e9dd905?show_docid=c99088a98e9dd905</guid>
  <author>
  jstuck...@attglobal.net
  (Jerry Stuckle)
  </author>
  <pubDate>Sat, 11 Nov 2009 02:54:15 UT
</pubDate>
  </item>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/75e20f2c66327a53?show_docid=75e20f2c66327a53</link>
  <description>
  This is from the MySQL perspective. &lt;br&gt; From the application perspective one should close the connection, &lt;br&gt; but that does release it back to the connection pool - the connection &lt;br&gt; pool keep the connection open in the database. &lt;br&gt; Arne
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/75e20f2c66327a53?show_docid=75e20f2c66327a53</guid>
  <author>
  a...@vajhoej.dk
  (Arne Vajhøj)
  </author>
  <pubDate>Sat, 11 Nov 2009 02:23:24 UT
</pubDate>
  </item>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/3e15308820f1647b?show_docid=3e15308820f1647b</link>
  <description>
  Not necessarily. It&#39;s also a bad idea to leave unused connections open &lt;br&gt; for hours on Oracle, SQL Server and DB2. &lt;br&gt; If you&#39;re using the connections, there is no problem keeping them open &lt;br&gt; in MySQL or any other database. But if you&#39;re not using the &lt;br&gt; connections, you should NOT leave them open in any database I&#39;m familiar
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/3e15308820f1647b?show_docid=3e15308820f1647b</guid>
  <author>
  jstuck...@attglobal.net
  (Jerry Stuckle)
  </author>
  <pubDate>Sat, 11 Nov 2009 02:10:32 UT
</pubDate>
  </item>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/552c5369f307cf8b?show_docid=552c5369f307cf8b</link>
  <description>
  That will make the code work well with MySQL but bad with &lt;br&gt; other databases. If the intent is to write database independent &lt;br&gt; code, then it is not an optimal solution. &lt;br&gt; Arne
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/552c5369f307cf8b?show_docid=552c5369f307cf8b</guid>
  <author>
  a...@vajhoej.dk
  (Arne Vajhøj)
  </author>
  <pubDate>Sat, 11 Nov 2009 02:03:42 UT
</pubDate>
  </item>
  <item>
  <title>Re: Socket Server with MySQL</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/284afdc172f54f81?show_docid=284afdc172f54f81</link>
  <description>
  RVic wrote: &lt;br&gt; From the practical perspective then I think that: &lt;br&gt; * if you do not use a connection pool, then you should &lt;br&gt; send a SELECT 1 every hour to keep things alive &lt;br&gt; * if you do use a connection pool, then you should &lt;br&gt; use one capable of verifying connections and return &lt;br&gt; a valid to you (and if your connection pool does not
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/999ab3a741738a23/284afdc172f54f81?show_docid=284afdc172f54f81</guid>
  <author>
  a...@vajhoej.dk
  (Arne Vajhøj)
  </author>
  <pubDate>Sat, 11 Nov 2009 02:01:27 UT
</pubDate>
  </item>
  <item>
  <title>Re: Full outer join?</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/986892b61db4ad0a/0606f030128f00fb?show_docid=0606f030128f00fb</link>
  <description>
  Eggzaggly.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/986892b61db4ad0a/0606f030128f00fb?show_docid=0606f030128f00fb</guid>
  <author>
  jstuck...@attglobal.net
  (Jerry Stuckle)
  </author>
  <pubDate>Fri, 11 Nov 2009 22:01:59 UT
</pubDate>
  </item>
  <item>
  <title>Re: Full outer join?</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/986892b61db4ad0a/1ba46336d9891d0f?show_docid=1ba46336d9891d0f</link>
  <description>
  On Nov 27, 12:49 pm, &amp;quot;David Portas&amp;quot; &lt;br&gt; So use UNION ALL
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/986892b61db4ad0a/1ba46336d9891d0f?show_docid=1ba46336d9891d0f</guid>
  <author>
  paul_laut...@yahoo.com
  (Captain Paralytic)
  </author>
  <pubDate>Fri, 11 Nov 2009 21:59:06 UT
</pubDate>
  </item>
  <item>
  <title>Re: Full outer join?</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/986892b61db4ad0a/e6de16e1704220a7?show_docid=e6de16e1704220a7</link>
  <description>
  Unfortunately the given workarounds using UNION are not truly FULL OUTER &lt;br&gt; joins because they eliminate duplicate rows that a real full outer join &lt;br&gt; would not. In most cases that maybe won&#39;t be a problem but I think it&#39;s just &lt;br&gt; worth noting that reproducing the true behaviour of FULL is a bit more &lt;br&gt; complex than those examples imply.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/986892b61db4ad0a/e6de16e1704220a7?show_docid=e6de16e1704220a7</guid>
  <author>
  remove_before_replying_dpor...@acm.org
  (David Portas)
  </author>
  <pubDate>Fri, 11 Nov 2009 20:49:17 UT
</pubDate>
  </item>
  <item>
  <title>Re: Complex query on tree structure: Help!</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/367ade4fd6aa3f22/725e906d3f95b376?show_docid=725e906d3f95b376</link>
  <description>
  This might not count as a single query, but if you know its never more than &lt;br&gt; 5 deep (which you said) then you could do it in 5 queries (one for each &lt;br&gt; level of depth) and use union to combine the results.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/367ade4fd6aa3f22/725e906d3f95b376?show_docid=725e906d3f95b376</guid>
  <author>
  not.h...@localhost
  (Brian Cryer)
  </author>
  <pubDate>Fri, 11 Nov 2009 16:53:24 UT
</pubDate>
  </item>
  <item>
  <title>Re: difficult query...for me</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/48c2a29fa2742c1c/83427cf0023ae557?show_docid=83427cf0023ae557</link>
  <description>
  Still completely unnecessary - and does not create a historical report.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/48c2a29fa2742c1c/83427cf0023ae557?show_docid=83427cf0023ae557</guid>
  <author>
  jstuck...@attglobal.net
  (Jerry Stuckle)
  </author>
  <pubDate>Fri, 11 Nov 2009 14:07:05 UT
</pubDate>
  </item>
  <item>
  <title>Re: difficult query...for me</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/48c2a29fa2742c1c/57abe6423e57549e?show_docid=57abe6423e57549e</link>
  <description>
  So a second troll shows up. I respond to trolls in the only language &lt;br&gt; they understand.
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/48c2a29fa2742c1c/57abe6423e57549e?show_docid=57abe6423e57549e</guid>
  <author>
  jstuck...@attglobal.net
  (Jerry Stuckle)
  </author>
  <pubDate>Fri, 11 Nov 2009 14:05:40 UT
</pubDate>
  </item>
  <item>
  <title>Re: Complex query on tree structure: Help!</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/367ade4fd6aa3f22/1cb5bb538dc967a6?show_docid=1cb5bb538dc967a6</link>
  <description>
  Many thanks Andrew, but I already had those! &lt;br&gt; No, after 4 hours of beating my brains I ended up doing it the long way, &lt;br&gt; which took ten minutes to code! &lt;br&gt; I ended up with a two dimensional matrix, and simply walked through that &lt;br&gt; inserting numbers that are not null, and not already in, into a PHP array. &lt;br&gt; $result=mysql_query(sprintf(
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/367ade4fd6aa3f22/1cb5bb538dc967a6?show_docid=1cb5bb538dc967a6</guid>
  <author>
  t...@invalid.invalid
  (The Natural Philosopher)
  </author>
  <pubDate>Fri, 11 Nov 2009 11:36:05 UT
</pubDate>
  </item>
  <item>
  <title>Re: difficult query...for me</title>
  <link>http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/48c2a29fa2742c1c/9078ecc5f1b60702?show_docid=9078ecc5f1b60702</link>
  <description>
  Franz: &lt;br&gt; Still, I wonder if this is really necessary for historical reports, &lt;br&gt; UNLESS you also remove historical data. &lt;br&gt; In case you always have the required data in your database, a &lt;br&gt; historical report could simply be produced using something like &lt;br&gt; SELECT a,b,c FROM table &lt;br&gt; WHERE dateA &amp;gt; &amp;quot;2007-01-00&amp;quot; AND dateA &amp;lt; &amp;quot;2008-12-99&amp;quot;
  </description>
  <guid isPermaLink="true">http://groups.google.co.uk/group/comp.databases.mysql/browse_thread/thread/48c2a29fa2742c1c/9078ecc5f1b60702?show_docid=9078ecc5f1b60702</guid>
  <author>
  erick.use-...@ardane.c.o.m
  (Erick T. Barkhuis)
  </author>
  <pubDate>Fri, 11 Nov 2009 08:37:33 UT
</pubDate>
  </item>
  </channel>
</rss>
