<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ZX:rishistar programming blocks</title>
	<atom:link href="http://rishistar.com/zx/feed/" rel="self" type="application/rss+xml" />
	<link>http://rishistar.com/zx</link>
	<description>Java/Wordpress programming tips and tricks</description>
	<lastBuildDate>Thu, 28 Jul 2011 22:23:55 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.1.2</generator>
		<item>
		<title>Updating A Spring Tutorial</title>
		<link>http://rishistar.com/zx/2011/07/updating-a-spring-tutorial/</link>
		<comments>http://rishistar.com/zx/2011/07/updating-a-spring-tutorial/#comments</comments>
		<pubDate>Thu, 28 Jul 2011 22:23:55 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/?p=139</guid>
		<description><![CDATA[Open Netbeans. New Web Application, Spring v2.5, changed default dispatcher to &#8216;springapp&#8217; created a custom landing page &#8211; edit web.xml welcome page to make it the default. Look at the springapp-servlet.xml and the indexController.]]></description>
			<content:encoded><![CDATA[<p>Open Netbeans.</p>
<p>New Web Application, Spring v2.5, changed default dispatcher to &#8216;springapp&#8217;</p>
<p>created a custom landing page &#8211; edit web.xml welcome page to make it the default.</p>
<p>Look at the springapp-servlet.xml and the indexController.</p>
<p><!--<br />
    The index controller.<br />
    --><br />
    <bean name="indexController"<br />
          class="org.springframework.web.servlet.mvc.ParameterizableViewController"<br />
          p:viewName="index" /></p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2011/07/updating-a-spring-tutorial/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Spring / Netbeans &#8211; a missing context.xml file</title>
		<link>http://rishistar.com/zx/2011/04/spring-netbeans-a-missing-context-xml-file/</link>
		<comments>http://rishistar.com/zx/2011/04/spring-netbeans-a-missing-context-xml-file/#comments</comments>
		<pubDate>Fri, 29 Apr 2011 11:29:38 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Netbeans IDE]]></category>
		<category><![CDATA[Spring]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/?p=134</guid>
		<description><![CDATA[So I&#8217;ve upgraded to Netbeans 7 recently, and had an issue that comes up when creating a new Spring MVC Web Application. That is, when I run the Tomcat application an error message appears &#8211; context.xml (The system cannot find the file specified). Looking around on the internet it seems this may have been around [...]]]></description>
			<content:encoded><![CDATA[<p>So I&#8217;ve upgraded to Netbeans 7 recently, and had an issue that comes up when creating a new Spring MVC Web Application. That is, when I run the Tomcat application an error message appears &#8211; context.xml (The system cannot find the file specified).</p>
<p>Looking around on the internet it seems this may have been around for a while, so I was mystified as to why I hadn&#8217;t come across it before. However it seems like the kind of bug which stops occuring when I <strong>create my new Spring Web Application with another project already open in the Project Group</strong>. Don&#8217;t ask me why, and this may change in the future &#8211; but if you&#8217;re stuck on this it may be worth a try.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2011/04/spring-netbeans-a-missing-context-xml-file/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Perl Catalyst</title>
		<link>http://rishistar.com/zx/2011/02/perl-catalyst/</link>
		<comments>http://rishistar.com/zx/2011/02/perl-catalyst/#comments</comments>
		<pubDate>Tue, 22 Feb 2011 00:40:42 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Catalyst]]></category>
		<category><![CDATA[Perl]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/?p=128</guid>
		<description><![CDATA[I&#8217;ve been trying out a Perl MVC architecture called Catalyst. To get to grips with this I was handed a book by Jonathon Rockway which I have been trying to go through, though it&#8217;s five years old at the time of writing and maybe Catalyst has matured a bit since then. However one issue I [...]]]></description>
			<content:encoded><![CDATA[<p>I&#8217;ve been trying out a Perl MVC architecture called <a href="http://www.catalystframework.org/" target="_blank">Catalyst</a>. To get to grips with this I was handed a book by Jonathon Rockway which I have been trying to go through, though it&#8217;s five years old at the time of writing and maybe Catalyst has matured a bit since then.</p>
<p>However one issue I came across trying to get going with it was just the installation instructions. I ran the &#8216;apt-get install libcatalyst-perl&#8217; command, but following this wasn&#8217;t enough to get the initial example up and running.</p>
<p>The error obtained was &#8216;Can&#8217;t locate Catalyst/Plugin/Static/Simple&#8217; in @INC.</p>
<p>The fix was to also install libcatalyst-modules-perl. If you list all the catalyst packages you may also see some others you like.</p>
<p>I&#8217;ve ordered this book which seems to get good ratings&#8230;.will see how it goes&#8230;. <a href="http://www.amazon.co.uk/gp/product/1430223650?ie=UTF8&#038;tag=rishistar-21&#038;linkCode=as2&#038;camp=1634&#038;creative=19450&#038;creativeASIN=1430223650">The Definitive Guide to Catalyst: Writing Extendable, Scalable and Maintainable Perl-Based Web Applications (Expert&#8217;s Voice in Web Development)</a><img src="http://www.assoc-amazon.co.uk/e/ir?t=rishistar-21&#038;l=as2&#038;o=2&#038;a=1430223650" width="1" height="1" border="0" alt="" style="border:none !important; margin:0px !important;" /></p>
<p>ADDENDUM &#8211; the book turned out to be a bit useless. For instance when it came to some out of date features &#8211; for example, a third party library that even the libraries author says DO NOT USE &#8211; the book just says &#8211; yeah, this example may not work. </p>
<p>The best source I found was the <a href="http://www.catalystframework.org">Catalyst tutorial on the website</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2011/02/perl-catalyst/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SSH Tunneling into a Web Server</title>
		<link>http://rishistar.com/zx/2010/11/ssh-tunneling-from-windows/</link>
		<comments>http://rishistar.com/zx/2010/11/ssh-tunneling-from-windows/#comments</comments>
		<pubDate>Sat, 20 Nov 2010 10:07:17 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[linux interactions]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/?p=126</guid>
		<description><![CDATA[&#8220;From a PC running Windows 7 or Linux I would like to connect to a linux server so I can view the web pages generated for a web application hidden behind a firewall.&#8221; If this sounds like something you need to do then read on. What we are going to do is implement SSH tunneling. [...]]]></description>
			<content:encoded><![CDATA[<p>&#8220;<em>From a PC running Windows 7 or Linux I would like to connect to a linux server so I can view the web pages generated for a web application hidden behind a firewall</em>.&#8221;</p>
<p>If this sounds like something you need to do then read on.</p>
<p>What we are going to do is implement SSH tunneling. SSH is used to &#8216;tunnel&#8217; through the firewall. We then redirect port 80 on the web server through the SSH tunnel to port 1066 on the local machine.</p>
<p>You will need to have SSH login details to access your webserver.</p>
<h3>On Windows</h3>
<p>You will need to have <a href="http://www.chiark.greenend.org.uk/~sgtatham/putty/" target="_blank">Putty</a> installed on your PC.</p>
<p>Start Putty.</p>
<p>Enter your SSH login URL as the host name, and if no alternative port has been specified for SSH, 22 as the host port.</p>
<p>In the left hand column go to Connection -&gt; SSH -&gt; Tunnels.</p>
<p>In the source port type 1066.</p>
<p>In the destination you will typically type &#8216;localhost:80&#8242;. However this may change if the web application you are accessing runs on a different port (e.g. Tomcat applications usually run on port 8080, and your own application may be something different), so you may have to type localhost:8080 to access Tomcat without going through the main webserver. In addition the localhost part of this may change if the webpages you are trying to access are on a different machine to the one you are trying to SSH into (e.g. you may have to type node2:80 if the machine you are logging into is connected to node2 as the machine you are running the web application on).</p>
<p>Click Add.</p>
<p>In the left hand column click &#8216;Session&#8217; at the top.</p>
<p>Click &#8216;Save&#8217; to save these settings.</p>
<p>Click Open.</p>
<p>You will be prompted for your username and password. (This opens a shell on your target machine so you can run linux command lines here).</p>
<p>To view the web application visit the following URL in your browser. http://localhost:1066/</p>
<h3>On Linux</h3>
<p>This can be done by opening a terminal window and typing in:</p>
<p>ssh -L 1066:localhost:80 username@websiteURL</p>
<p>In your webbrowser then going to http://localhost:1066 will give you the tracking system front end.</p>
<ol></ol>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/11/ssh-tunneling-from-windows/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Including Custom Search Results In A WordPress Page</title>
		<link>http://rishistar.com/zx/2010/07/including-custom-search-results-in-a-wordpress-page/</link>
		<comments>http://rishistar.com/zx/2010/07/including-custom-search-results-in-a-wordpress-page/#comments</comments>
		<pubDate>Thu, 15 Jul 2010 15:58:56 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[search facility]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/2010/07/including-custom-search-results-in-a-wordpress-page/</guid>
		<description><![CDATA[One website required certain pages to contain custom search results. To do this I needed to have the following code. The main tricks here are to create a second query as well as the main page query using the WP_Query method, and that the parameter for such a query needs an s=&#8230; to let it [...]]]></description>
			<content:encoded><![CDATA[<p>One website required certain pages to contain custom search results. </p>
<p>To do this I needed to have the following code. The main tricks here are to create a second query as well as the main page query using the WP_Query method, and that the parameter for such a query needs an s=&#8230; to let it know the phrase being supplied is a search term.</p>
<p>The get_post_meta() method allows extraction from the main page extra parameter list.</p>
<p><font color="#800040">&lt;?php     <br /></font><font color="#800040">     <br />$query_string = get_post_meta($post-&gt;ID, &#8216;organism_class&#8217;, true) ;       <br /></font><font color="#800040">$search = new WP_Query( &quot;s=$query_string&amp;showposts=5&quot; ) ;     <br />$search_posts = $search-&gt;query( &quot;s=$query_string&amp;showposts=5&quot; ) ; </font></p>
<p><font color="#800040"> while ($search-&gt;have_posts()) : $search-&gt;the_post();     <br />?&gt; </font></p>
<p><font color="#800040">&lt;h4&gt;&lt;a href=&quot;&lt;?php the_permalink() ?&gt;&quot;&gt;&lt;?php the_title(); ?&gt;&lt;/a&gt;&lt;/h4&gt;     <br />&lt;?php the_content(); ?&gt;      <br /></font></p>
<p><font color="#800040">&lt;?php endwhile; ?&gt;</font></p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/07/including-custom-search-results-in-a-wordpress-page/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>OpenOffice: Recovery Window keeps popping up for a deleted file</title>
		<link>http://rishistar.com/zx/2010/05/openoffice-recovery-window-keeps-popping-up-for-a-deleted-file/</link>
		<comments>http://rishistar.com/zx/2010/05/openoffice-recovery-window-keeps-popping-up-for-a-deleted-file/#comments</comments>
		<pubDate>Thu, 27 May 2010 11:42:59 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[OpenOffice]]></category>
		<category><![CDATA[Windows]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/2010/05/openoffice-recovery-window-keeps-popping-up-for-a-deleted-file/</guid>
		<description><![CDATA[Calc, the OpenOffice.org spreadsheet program can sometimes crash for me when doing cut and paste. On one occasion I deleted the file I was working on. Since then the recovery window pops up every time the program gets started and fails because the item doesn’t exist. The solution is to delete the OpenOffice.org recovery file. [...]]]></description>
			<content:encoded><![CDATA[<p>Calc, the <a href="http://openoffice.org" target="_blank">OpenOffice.org</a> spreadsheet program can sometimes crash for me when doing cut and paste. On one occasion I deleted the file I was working on.</p>
<p>Since then the recovery window pops up every time the program gets started and fails because the item doesn’t exist. </p>
<p>The solution is to delete the OpenOffice.org recovery file. Its located at the following subdirectory of the user data directory.</p>
<p>AppData\Roaming\OpenOffice.org\3\user\registry\data\org\openoffice\Office\Roaming.xcu</p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/05/openoffice-recovery-window-keeps-popping-up-for-a-deleted-file/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Making your page Meta Tag the post title in WordPress</title>
		<link>http://rishistar.com/zx/2010/05/making-your-page-meta-tag-the-post-title-in-wordpress/</link>
		<comments>http://rishistar.com/zx/2010/05/making-your-page-meta-tag-the-post-title-in-wordpress/#comments</comments>
		<pubDate>Wed, 26 May 2010 15:17:30 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[meta tags]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/2010/05/making-your-page-meta-tag-the-post-title-in-wordpress/</guid>
		<description><![CDATA[The META tag can be used to provide additional information to search engines. Google doesn’t use meta tags directly to increase page rank but a helpful description can be useful in deciding what gets used as a page summary on another site, making something thats more appealing to the user than whatever bit of the [...]]]></description>
			<content:encoded><![CDATA[<p>The META tag can be used to provide additional information to search engines. Google doesn’t use meta tags directly to increase page rank but a helpful description can be useful in deciding what gets used as a page summary on another site, making something thats more appealing to the user than whatever bit of the page is displayed along with a link.</p>
<p>You can include this in WordPress using the following in the header.php file in your template.</p>
<p><strong>&lt;meta name=&quot;description&quot; content=&quot;&lt;?php the_title() ; ?&gt; &quot; /&gt;</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/05/making-your-page-meta-tag-the-post-title-in-wordpress/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: Deleting or Rename Files still appear in Windows Explorer until they are refreshed</title>
		<link>http://rishistar.com/zx/2010/05/windows-7-deleting-or-rename-files-still-appear-in-windows-explorer-until-they-are-refreshed/</link>
		<comments>http://rishistar.com/zx/2010/05/windows-7-deleting-or-rename-files-still-appear-in-windows-explorer-until-they-are-refreshed/#comments</comments>
		<pubDate>Tue, 25 May 2010 20:32:31 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Windows]]></category>
		<category><![CDATA[Windows Explorer]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/2010/05/windows-7-deleting-or-rename-files-still-appear-in-windows-explorer-until-they-are-refreshed/</guid>
		<description><![CDATA[I was experiencing a problem with Windows 7 Explorer in that deleting a file left behind a ghosted out version of the file in Explorer with the same name. I couldn’t actually do anything with this file as it was actually deleted (or moved if I had renamed it) but it was still listed until [...]]]></description>
			<content:encoded><![CDATA[<p>I was experiencing a problem with Windows 7 Explorer in that deleting a file left behind a ghosted out version of the file in Explorer with the same name. I couldn’t actually do anything with this file as it was actually deleted (or moved if I had renamed it) but it was still listed until the folder was refreshed through the magic of the F5 key.</p>
<p>Finally when having to rename a load of these files I’d had enough. Googling the answer pointed me to some Microsoft forums which gave technologically advanced answers like registry editing and someone even suggesting recreating your user profile. This was from Microsoft!</p>
<p>Somewhere in one of the threads someone pointed out that this only happened when accessing the Documents through a ‘Library’. Libraries in Windows 7 are a useful feature to my personal account as they are a useful way of accessing a spread apart music or video collection via a single access point, especially given an external disc. But it seems some sort of caching issue creeps up with accessing folders in the Library.</p>
<p>The problem I had was that accessing something as u:\users\rishistar\My Documents\test\ still resolved to a Libraries path so I right clicked on each library and deleted each one. I don’t use them on my work account so this was fine for me. YMMV. </p>
<p>As a coda I did have to re-create my favourite shortcuts in the top left of the Explorer pane but that was no big deal. </p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/05/windows-7-deleting-or-rename-files-still-appear-in-windows-explorer-until-they-are-refreshed/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting MySQL rows within a Time Range for a Java Program</title>
		<link>http://rishistar.com/zx/2010/05/selecting-mysql-rows-within-a-time-range-for-a-java-program/</link>
		<comments>http://rishistar.com/zx/2010/05/selecting-mysql-rows-within-a-time-range-for-a-java-program/#comments</comments>
		<pubDate>Thu, 20 May 2010 12:09:57 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[MySQL]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/?p=114</guid>
		<description><![CDATA[Earlier I discussed selecting rows from a table within a specified date range. What if you need to select rows from within a time range? Again a SELECT statement with a WHERE clause is needed. The  method below will give the statement for the start and end times of the statement. Unlike the earlier example [...]]]></description>
			<content:encoded><![CDATA[<p>Earlier I discussed <a href="http://rishistar.com/zx/2010/04/selecting-mysql-rows-with-timestamp-column-in-a-date-range-from-a-java-program/">selecting rows from a table within a specified date range</a>. What if you need to select rows from within a time range?</p>
<p>Again a SELECT statement with a WHERE clause is needed. The  method below will give the statement for the start and end times of the statement. Unlike the earlier example this has a DateFormat to supply the String required to generate the SQL statement.</p>
<pre>GregorianCalendar calStart = new GregorianCalendar() ;
 calStart.set( Calendar.HOUR_OF_DAY, 18 ) ;
 calStart.set( Calendar.MINUTE, 1 ) ;
 String sql = "SELECT * FROM " + dbh.userTable.tableName +
          " WHERE status=1 AND "
          + SQLStrings.getWhereBetweenDates( "signup_time", calStart ) ;

.....

<span style="color: #800080;">public static String getWhereBetweenDates( String columnName, GregorianCalendar calStart)
{
    GregorianCalendar now = new GregorianCalendar() ;
    StringBuffer sb = new StringBuffer( columnName + " BETWEEN " ) ;
    SimpleDateFormat df = new SimpleDateFormat( "yyyy-MM-dd HH:mm:ss" ) ;
    String beforeDateString = df.format( calStart.getTime() ) ;
    String afterDateString = df.format( now.getTime() ) ;
    sb.append( beforeDateString + " AND " + afterDateString ) ;
    return sb.toString() ;
}

</span></pre>
<p><span style="color: #800080;"><span style="color: #000000;">Note that the DateFormat String here was determined by what was present in the MySQL database for that particular column. YMMV &#8211; so if there are problems maybe check your database table to see what particular format that column takes.</span></span><span style="color: #800080;"><span style="color: #000000;"> </span></span></p>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/05/selecting-mysql-rows-within-a-time-range-for-a-java-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Selecting MySQL Rows with a Timestamp Column on a Single Day or Month from your Java Program</title>
		<link>http://rishistar.com/zx/2010/05/selecting-mysql-rows-with-a-timestamp-column-on-a-single-day-or-month-from-your-java-program/</link>
		<comments>http://rishistar.com/zx/2010/05/selecting-mysql-rows-with-a-timestamp-column-on-a-single-day-or-month-from-your-java-program/#comments</comments>
		<pubDate>Thu, 06 May 2010 09:34:00 +0000</pubDate>
		<dc:creator>rishi</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[timestamp]]></category>

		<guid isPermaLink="false">http://rishistar.com/zx/2010/05/selecting-mysql-rows-with-a-timestamp-column-on-a-single-day-or-month-from-your-java-program/</guid>
		<description><![CDATA[You have a MySQL database table with a Timestamp column, and you need to select entries for a single day, month or year. As indicated in previous posts, you can construct MySQL statements that allow you to access items from a certain date/month/year. This can be achived using the following. String sql = &#8220;SELECT * [...]]]></description>
			<content:encoded><![CDATA[<p>You have a MySQL database table with a Timestamp column, and you need to select entries for a single day, month or year. As indicated in previous posts, you can construct MySQL statements that allow you to access items from a certain date/month/year.</p>
<p>This can be achived using the following.</p>
<blockquote><p>String sql =<br />
&#8220;SELECT * FROM orders WHERE day(time_outgoing)=&#8221; + day ;<br />
Statement st = con.createStatement() ;<br />
ResultSet rs = st.executeQuery(sql) ;</p></blockquote>
<p>Something similar can be done for months and years, and Java’s Calender class provides fields for moth access. However note that the java.util.Calender fields for months are indexed from 0, so the actual integer value of Calender.MAY is 4 and not 5.</p>
<blockquote><p>int month = Calender.MAY ; //want entries for may</p>
<p>//increase the month by 1 to access values</p>
<p>String sql =<br />
&#8220;SELECT * FROM orders WHERE month(time_outgoing)=&#8221; + (month+1) ;<br />
Statement st = con.createStatement() ;<br />
ResultSet rs = st.executeQuery(sql) ;</p>
<p>OR</p>
<p>SELECT *<br />
FROM optout75308<br />
WHERE logtime<br />
BETWEEN &#8220;2010-05-21&#8243;<br />
AND &#8220;2010-05-22&#8243;<br />
AND (<br />
contact_method = &#8216;ODWBPRESS1&#8242;<br />
OR contact_method = &#8216;SERV2OWDBy&#8217;<br />
)</p></blockquote>
]]></content:encoded>
			<wfw:commentRss>http://rishistar.com/zx/2010/05/selecting-mysql-rows-with-a-timestamp-column-on-a-single-day-or-month-from-your-java-program/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

