<?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/"
	xmlns:coop="http://www.google.com/coop/namespace"
	>

<channel>
	<title>Mind DiaryDatabase</title>
	<atom:link href="http://minddiary.com/category/database/feed/" rel="self" type="application/rss+xml" />
	<link>http://minddiary.com</link>
	<description>There is only one way to learn. It&#039;s through action!</description>
	<lastBuildDate>Sat, 27 Feb 2010 11:27:41 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		
<!-- Start Of Script Generated By WP-PostViews Plus -->
<script type='text/javascript' src='http://minddiary.com/wp-includes/js/jquery/jquery.js?ver=1.3.2'></script>
<script type="text/javascript">
/* <![CDATA[ */
/* ]]> */
</script>
<!-- End Of Script Generated By WP-PostViews Plus -->
	<item>
		<title>HSQLDB CASE-Insensitive &#8216;LIKE&#8217; QUERY &#8211; THREE Implementation Methods</title>
		<link></link>
		<comments>http://minddiary.com/2007/10/01/hsqldb-case-insensitive-like-query-three-implementation-methods/#comments</comments>
		<pubDate>Mon, 01 Oct 2007 13:09:51 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[HSQLDB]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/10/01/hsqldb-case-insensitive-like-query-three-implementation-methods/</guid>
		<description><![CDATA[


&#160;
Method 1: We can use the following command to change the case sensitivity of the text-comparison of any table which we are going to create.
SET IGNORECASE
SET IGNORECASE { TRUE &#124; FALSE };
· Disables (ignorecase = true) or enables (ignorecase = false) the case sensitivity of text comparison and indexing for new tables.· By default, character<p><a href="http://minddiary.com/2007/10/01/hsqldb-case-insensitive-like-query-three-implementation-methods/">HSQLDB CASE-Insensitive &#8216;LIKE&#8217; QUERY &#8211; THREE Implementation Methods</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/10/01/hsqldb-case-insensitive-like-query-three-implementation-methods/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Database]]></coop:keyword>
		<coop:keyword><![CDATA[HSQLDB]]></coop:keyword>
		<coop:keyword><![CDATA[Tips]]></coop:keyword>
	</item>
		<item>
		<title>&#039;Hibernate Dialect property&#039; for Different Databases</title>
		<link></link>
		<comments>http://minddiary.com/2007/01/08/hibernate-dialect-property-for-different-databases/#comments</comments>
		<pubDate>Mon, 08 Jan 2007 10:04:55 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[Hibernate]]></category>
		<category><![CDATA[ORM]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2007/01/08/hibernate-dialect-property-for-different-databases/</guid>
		<description><![CDATA[Hibernate is the most common and famous ORM using these days. It has a property called &#8220;Dialect&#8221; through which we tells Hibernate that we are using &#8216;this specific&#8217; database. Here in this post you can see the dialect property values which we have to give for different databases. You can read more about this from<p><a href="http://minddiary.com/2007/01/08/hibernate-dialect-property-for-different-databases/">&#039;Hibernate Dialect property&#039; for Different Databases</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2007/01/08/hibernate-dialect-property-for-different-databases/feed/</wfw:commentRss>
		<slash:comments>5</slash:comments>
			<coop:keyword><![CDATA[Database]]></coop:keyword>
		<coop:keyword><![CDATA[Hibernate]]></coop:keyword>
		<coop:keyword><![CDATA[ORM]]></coop:keyword>
	</item>
		<item>
		<title>HSQLDB: a lightweighted relational database</title>
		<link></link>
		<comments>http://minddiary.com/2006/11/21/hsqldb-a-lightweighted-relational-database/#comments</comments>
		<pubDate>Tue, 21 Nov 2006 06:24:24 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[HSQLDB]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[Softwares]]></category>
		<category><![CDATA[opensource]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2006/11/21/hsqldb-a-lightweighted-relational-database/</guid>
		<description><![CDATA[ 
HSQLDB is a relational database engine written 100% in Java , with a JDBC driver. This supports a subset of ANSI-92 SQL. It is best known for its small size, ability to execute completely in memory and its speed. It offers a small (about 100k), fast database engine which offers both in memory and<p><a href="http://minddiary.com/2006/11/21/hsqldb-a-lightweighted-relational-database/">HSQLDB: a lightweighted relational database</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2006/11/21/hsqldb-a-lightweighted-relational-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Database]]></coop:keyword>
		<coop:keyword><![CDATA[HSQLDB]]></coop:keyword>
		<coop:keyword><![CDATA[JDBC]]></coop:keyword>
		<coop:keyword><![CDATA[Java]]></coop:keyword>
		<coop:keyword><![CDATA[Softwares]]></coop:keyword>
		<coop:keyword><![CDATA[opensource]]></coop:keyword>
	</item>
		<item>
		<title>SQLyog: a MySQL front End</title>
		<link></link>
		<comments>http://minddiary.com/2006/10/19/sqlyog-a-mysql-front-end/#comments</comments>
		<pubDate>Thu, 19 Oct 2006 11:16:35 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[MySQL]]></category>
		<category><![CDATA[SQLyog]]></category>
		<category><![CDATA[Tips]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2006/10/19/sqlyog-a-mysql-front-end/</guid>
		<description><![CDATA[SQLyog is an all-round Management Tool (GUI / Frontend) for the MySQL database. It is supported MySQL versions from 3.23 to 5.1.x. I think SQLyog provides an efficient and intuitive User Interface for management of MySQL database. It is at the same time an easy-to-use tool for beginners and an efficient timesaver for MySQL power<p><a href="http://minddiary.com/2006/10/19/sqlyog-a-mysql-front-end/">SQLyog: a MySQL front End</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2006/10/19/sqlyog-a-mysql-front-end/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Database]]></coop:keyword>
		<coop:keyword><![CDATA[MySQL]]></coop:keyword>
		<coop:keyword><![CDATA[SQLyog]]></coop:keyword>
		<coop:keyword><![CDATA[Tips]]></coop:keyword>
	</item>
		<item>
		<title>The new attractive features of JDBC 4.0</title>
		<link></link>
		<comments>http://minddiary.com/2006/09/09/the-new-attractive-features-of-jdbc-40/#comments</comments>
		<pubDate>Sat, 09 Sep 2006 09:50:39 +0000</pubDate>
		<dc:creator>Lijin</dc:creator>
				<category><![CDATA[Database]]></category>
		<category><![CDATA[JDBC]]></category>
		<category><![CDATA[Java]]></category>

		<guid isPermaLink="false">http://lijinjoseji.wordpress.com/2006/09/09/the-new-attractive-features-of-jdbc-40/</guid>
		<description><![CDATA[Java SE 6.0 is expected to be released in October 06. An important part of the new version of Java is the new JDBC 4.0 API. JDBC 4.0 brings several changes to JDBC, but its top priority is making things easier for developers.
Interesting developments in JDBC 4.0 are:
1. No need to explicitly load JDBC drivers<p><a href="http://minddiary.com/2006/09/09/the-new-attractive-features-of-jdbc-40/">The new attractive features of JDBC 4.0</a> is a post from: <a href="http://minddiary.com">Mind Diary</a></p>



No related posts.

Related posts brought to you by <a href='http://mitcho.com/code/yarpp/'>Yet Another Related Posts Plugin</a>.]]></description>
		<wfw:commentRss>http://minddiary.com/2006/09/09/the-new-attractive-features-of-jdbc-40/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
			<coop:keyword><![CDATA[Database]]></coop:keyword>
		<coop:keyword><![CDATA[JDBC]]></coop:keyword>
		<coop:keyword><![CDATA[Java]]></coop:keyword>
	</item>
	</channel>
</rss>
