<?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"
>

<channel>
	<title>sql statements</title>
	<atom:link href="http://www.codeweblog.com/feed/tag/sql-statements/" rel="self" type="application/rss+xml" />
	<link>http://www.codeweblog.com/</link>
	<description>sql statements</description>
	<pubDate>Fri, 19 Mar 2010 19:27:46+0000</pubDate>
	<generator>http://www.codeweblog.com/</generator>
	<language>en</language>
		<item>
		<title>jdbc of the Statement, PreparedStatement, CallableStatement</title>
		<link>http://www.codeweblog.com/jdbc-of-the-statement-preparedstatement-callablestatement/</link>
		<comments>http://www.codeweblog.com/jdbc-of-the-statement-preparedstatement-callablestatement/#comments</comments>
		<pubDate>Thu, 04 Feb 2010 21:55:37+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[implementation]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[interface]]></category>
<category><![CDATA[efficiency]]></category>
<category><![CDATA[several times]]></category>
<category><![CDATA[input parameters]]></category>
<category><![CDATA[maintainability]]></category>
<category><![CDATA[return result]]></category>
<category><![CDATA[callablestatement]]></category>
<category><![CDATA[input output]]></category>
<category><![CDATA[variable parameter]]></category>
<category><![CDATA[code readability]]></category>
<category><![CDATA[procedure syntax]]></category>
<category><![CDATA[sql course]]></category>
<category><![CDATA[output parameter]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/jdbc-of-the-statement-preparedstatement-callablestatement/</guid>
		<description><![CDATA[Statement each time you run sql statement, the database should be the implementation of sql statements to compile, it is best used only to perform a query and returns the results of the case, more eff ...]]></description>
		<content:encoded><![CDATA[Statement each time you run sql statement, the database should be the implementation of sql statements to compile, it is best used only to perform a query and returns the results of the case, more eff ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/jdbc-of-the-statement-preparedstatement-callablestatement/</wfw:commentRss>
	</item>
		<item>
		<title>JPA Overview</title>
		<link>http://www.codeweblog.com/jpa-overview/</link>
		<comments>http://www.codeweblog.com/jpa-overview/#comments</comments>
		<pubDate>Sun, 08 Nov 2009 06:15:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[entity object]]></category>
<category><![CDATA[jpa]]></category>
<category><![CDATA[persistence]]></category>
<category><![CDATA[database table]]></category>
<category><![CDATA[jdbc]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[web applications]]></category>
<category><![CDATA[jcp]]></category>
<category><![CDATA[database query language]]></category>
<category><![CDATA[annotations]]></category>
<category><![CDATA[run time]]></category>
<category><![CDATA[coupling]]></category>
<category><![CDATA[mapping table]]></category>
<category><![CDATA[desktop applications]]></category>
<category><![CDATA[expert group]]></category>
<category><![CDATA[object oriented database]]></category>
<category><![CDATA[standardization]]></category>
<category><![CDATA[group software development]]></category>
<category><![CDATA[very important aspect]]></category>
<category><![CDATA[second sun]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/jpa-overview/</guid>
		<description><![CDATA[Java Persistence API JPA through JDK 5.0 annotations or XML description of the object - the relationship between the mapping table and run-time persistence of the entity object to the database. Sun in ...]]></description>
		<content:encoded><![CDATA[Java Persistence API JPA through JDK 5.0 annotations or XML description of the object - the relationship between the mapping table and run-time persistence of the entity object to the database. Sun in ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-cfg-xml-configuration-file-including-the-primary-key-generation-strategy-introduction/" title="Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)">Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)</a> 2009-02-27 10:01:17</li>
					<li><a href="http://www.codeweblog.com/the-ejb3-persistence/" title="The EJB3 Persistence">The EJB3 Persistence</a> 2009-02-27 10:00:26</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/the-level-hibernate-cache/" title="The level Hibernate cache">The level Hibernate cache</a> 2009-02-27 09:45:02</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/jpa-overview/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate understand the inverse! Many-to-many</title>
		<link>http://www.codeweblog.com/hibernate-understand-the-inverse-many-to-many/</link>
		<comments>http://www.codeweblog.com/hibernate-understand-the-inverse-many-to-many/#comments</comments>
		<pubDate>Wed, 04 Nov 2009 17:25:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[attribute]]></category>
<category><![CDATA[relationship]]></category>
<category><![CDATA[entities]]></category>
<category><![CDATA[correlation]]></category>
<category><![CDATA[convenience]]></category>
<category><![CDATA[relationships]]></category>
<category><![CDATA[noun]]></category>
<category><![CDATA[class element]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-understand-the-inverse-many-to-many/</guid>
		<description><![CDATA[Inverse two-way relationship is hibernate in the basic concepts of, of course, for most entities, we do not require two-way link, more one-way correlation may choose Moreover, most of us are generally ...]]></description>
		<content:encoded><![CDATA[Inverse two-way relationship is hibernate in the basic concepts of, of course, for most entities, we do not require two-way link, more one-way correlation may choose Moreover, most of us are generally ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/jboss-ejb3-message-driven-bean/" title="jboss ejb3 Message Driven Bean">jboss ejb3 Message Driven Bean</a> 2009-02-27 13:50:10</li>
					<li><a href="http://www.codeweblog.com/hibernate-primary-key-strategy-sequence/" title="Hibernate primary key strategy-sequence">Hibernate primary key strategy-sequence</a> 2009-02-27 12:34:56</li>
					<li><a href="http://www.codeweblog.com/jdbc-example-of-a-long-time-do-not-have-jdbc-forgot/" title="JDBC example of a long time do not have JDBC forgot">JDBC example of a long time do not have JDBC forgot</a> 2009-02-27 12:34:50</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-understand-the-inverse-many-to-many/</wfw:commentRss>
	</item>
		<item>
		<title>learning hibernate Notes 5 - session.flush ()</title>
		<link>http://www.codeweblog.com/learning-hibernate-notes-5-session-flush/</link>
		<comments>http://www.codeweblog.com/learning-hibernate-notes-5-session-flush/#comments</comments>
		<pubDate>Thu, 08 Oct 2009 15:20:01+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[implementation]]></category>
<category><![CDATA[crud]]></category>
<category><![CDATA[sql statements]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/learning-hibernate-notes-5-session-flush/</guid>
		<description><![CDATA[We know that by default hibernate implementation of CRUD in accordance with the save, update, delete the order, why was it so? Because in the call session.save () when, hibernate at the same time the  ...]]></description>
		<content:encoded><![CDATA[We know that by default hibernate implementation of CRUD in accordance with the save, update, delete the order, why was it so? Because in the call session.save () when, hibernate at the same time the  ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/learning-hibernate-notes-5-session-flush/</wfw:commentRss>
	</item>
		<item>
		<title>Halo has been engaged in a hibernate</title>
		<link>http://www.codeweblog.com/halo-has-been-engaged-in-a-hibernate/</link>
		<comments>http://www.codeweblog.com/halo-has-been-engaged-in-a-hibernate/#comments</comments>
		<pubDate>Sun, 27 Sep 2009 03:15:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[sql statements]]></category>
<category><![CDATA[struts]]></category>
<category><![CDATA[halo]]></category>
<category><![CDATA[vent]]></category>
<category><![CDATA[rss reader]]></category>
<category><![CDATA[small project]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/halo-has-been-engaged-in-a-hibernate/</guid>
		<description><![CDATA[I really can not stand, we must write something about vent! Recent struts + hibernate + spring up a framework to write an RSS reader, do not hibernate because of the familiar, do not know how to multi ...]]></description>
		<content:encoded><![CDATA[I really can not stand, we must write something about vent! Recent struts + hibernate + spring up a framework to write an RSS reader, do not hibernate because of the familiar, do not know how to multi ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/in-require-no-such-file-to-load-date-format/" title="in `require ': no such file to load - date / format">in `require ': no such file to load - date / format</a> 2009-03-03 15:30:02</li>
					<li><a href="http://www.codeweblog.com/hibernate-easy-extract/" title="Hibernate easy extract">Hibernate easy extract</a> 2009-03-02 12:05:14</li>
					<li><a href="http://www.codeweblog.com/unable-to-load-bean-type-struts-derfault-xml-abnormal/" title="Unable to load bean: type: struts-derfault.xml abnormal">Unable to load bean: type: struts-derfault.xml abnormal</a> 2009-03-01 18:37:25</li>
					<li><a href="http://www.codeweblog.com/ror-explained/" title="RoR explained">RoR explained</a> 2009-02-27 12:40:02</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/halo-has-been-engaged-in-a-hibernate/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate Performance Optimization 1</title>
		<link>http://www.codeweblog.com/hibernate-performance-optimization-1/</link>
		<comments>http://www.codeweblog.com/hibernate-performance-optimization-1/#comments</comments>
		<pubDate>Thu, 03 Sep 2009 11:15:01+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[hql]]></category>
<category><![CDATA[jdbc]]></category>
<category><![CDATA[query object]]></category>
<category><![CDATA[query session]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[memory]]></category>
<category><![CDATA[circumstances]]></category>
<category><![CDATA[performance optimization]]></category>
<category><![CDATA[no doubt]]></category>
<category><![CDATA[developers]]></category>
<category><![CDATA[best performance]]></category>
<category><![CDATA[int size]]></category>
<category><![CDATA[sql implementation]]></category>
<category><![CDATA[batch operations]]></category>
<category><![CDATA[data changes]]></category>
<category><![CDATA[ecosystem]]></category>
<category><![CDATA[amount of money]]></category>
<category><![CDATA[overflow problem]]></category>
<category><![CDATA[problem with this approach]]></category>
<category><![CDATA[multiple records]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-performance-optimization-1/</guid>
		<description><![CDATA[First, modify, and delete volume In Hibernate 2, if any need to modify, and delete data operation, are required to execute a query operation, being necessary to modify or delete data, then the corresp ...]]></description>
		<content:encoded><![CDATA[First, modify, and delete volume In Hibernate 2, if any need to modify, and delete data operation, are required to execute a query operation, being necessary to modify or delete data, then the corresp ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/application-of-spring-struts2-0-hibernate-hql/" title="Application of spring struts2.0 hibernate HQL">Application of spring struts2.0 hibernate HQL</a> 2009-02-27 11:20:38</li>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-cfg-xml-configuration-file-including-the-primary-key-generation-strategy-introduction/" title="Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)">Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)</a> 2009-02-27 10:01:17</li>
					<li><a href="http://www.codeweblog.com/hibernate-generic-generic-dao/" title="hibernate generic generic DAO">hibernate generic generic DAO</a> 2009-02-27 09:46:44</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-performance-optimization-1/</wfw:commentRss>
	</item>
		<item>
		<title>Stored procedure</title>
		<link>http://www.codeweblog.com/stored-procedure/</link>
		<comments>http://www.codeweblog.com/stored-procedure/#comments</comments>
		<pubDate>Sun, 12 Jul 2009 01:45:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Development]]></category>
		<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[flow control]]></category>
<category><![CDATA[database server]]></category>
<category><![CDATA[target]]></category>
<category><![CDATA[sql server database]]></category>
<category><![CDATA[program interface]]></category>
<category><![CDATA[server applications]]></category>
<category><![CDATA[informix database]]></category>
<category><![CDATA[database users]]></category>
<category><![CDATA[oracle database system]]></category>
<category><![CDATA[database application design]]></category>
<category><![CDATA[informix 4gl]]></category>
<category><![CDATA[sql server databases]]></category>
<category><![CDATA[4gl languages]]></category>
<category><![CDATA[databases design]]></category>
<category><![CDATA[language preparation]]></category>
<category><![CDATA[sql language]]></category>
<category><![CDATA[design language]]></category>
<category><![CDATA[data security]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/stored-procedure/</guid>
		<description><![CDATA[when the sql statement before the implementation of the compiler, and then implementation. Stored procedure (Stored Procedure) is a set of specific functions in order to complete the set of SQL statem ...]]></description>
		<content:encoded><![CDATA[when the sql statement before the implementation of the compiler, and then implementation. Stored procedure (Stored Procedure) is a set of specific functions in order to complete the set of SQL statem ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-primary-key-strategy-sequence/" title="Hibernate primary key strategy-sequence">Hibernate primary key strategy-sequence</a> 2009-02-27 12:34:56</li>
					<li><a href="http://www.codeweblog.com/jdbc-example-of-a-long-time-do-not-have-jdbc-forgot/" title="JDBC example of a long time do not have JDBC forgot">JDBC example of a long time do not have JDBC forgot</a> 2009-02-27 12:34:50</li>
					<li><a href="http://www.codeweblog.com/some-interview-questions-java/" title="Some interview questions java">Some interview questions java</a> 2009-02-27 12:34:14</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/stored-procedure/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate (18): Hibernate initialization how to generate SQL statements?</title>
		<link>http://www.codeweblog.com/hibernate-18-hibernate-initialization-how-to-generate-sql-statements/</link>
		<comments>http://www.codeweblog.com/hibernate-18-hibernate-initialization-how-to-generate-sql-statements/#comments</comments>
		<pubDate>Fri, 10 Jul 2009 10:45:05+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[eclipse]]></category>
<category><![CDATA[source code]]></category>
<category><![CDATA[model category]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[attributes]]></category>
<category><![CDATA[model class]]></category>
<category><![CDATA[breakpoints]]></category>
<category><![CDATA[class person]]></category>
<category><![CDATA[configuration object]]></category>
<category><![CDATA[strict surveillance]]></category>
<category><![CDATA[person category]]></category>
<category><![CDATA[log profile]]></category>
<category><![CDATA[profile person]]></category>
<category><![CDATA[hard nut]]></category>
<category><![CDATA[bitter experience]]></category>
<category><![CDATA[shining moment]]></category>
<category><![CDATA[soft spot]]></category>
<category><![CDATA[track 1]]></category>
<category><![CDATA[profile analysis]]></category>
<category><![CDATA[precipitation]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-18-hibernate-initialization-how-to-generate-sql-statements/</guid>
		<description><![CDATA[Look at aspects of the book yesterday when Hibernate see the &quot;dynamic - update = true&quot; configuration. In a Model of the Mapping category after it set up, hibernate in the initialization Mode ...]]></description>
		<content:encoded><![CDATA[Look at aspects of the book yesterday when Hibernate see the &quot;dynamic - update = true&quot; configuration. In a Model of the Mapping category after it set up, hibernate in the initialization Mode ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/hibernate-parabolic-mistake-null-in-entry/" title="hibernate parabolic mistake: null in entry">hibernate parabolic mistake: null in entry</a> 2009-02-27 11:22:30</li>
					<li><a href="http://www.codeweblog.com/webqq-extjs-servlet-hibernate-spring-implementation/" title="WebQQ, ExtJs + Servlet + Hibernate + Spring implementation">WebQQ, ExtJs + Servlet + Hibernate + Spring implementation</a> 2009-02-27 11:22:18</li>
					<li><a href="http://www.codeweblog.com/myeclipse-plugin/" title="myeclipse plugin">myeclipse plugin</a> 2009-02-27 09:46:56</li>
					<li><a href="http://www.codeweblog.com/java-technology-eclipse-explain-the-use-of-techniques/" title="Java technology: Eclipse explain the use of techniques">Java technology: Eclipse explain the use of techniques</a> 2009-02-27 09:46:30</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-18-hibernate-initialization-how-to-generate-sql-statements/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate performance</title>
		<link>http://www.codeweblog.com/hibernate-performance/</link>
		<comments>http://www.codeweblog.com/hibernate-performance/#comments</comments>
		<pubDate>Mon, 22 Jun 2009 18:25:01+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[batch size]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[relationship]]></category>
<category><![CDATA[pool]]></category>
<category><![CDATA[html documents]]></category>
<category><![CDATA[html document]]></category>
<category><![CDATA[high cache]]></category>
<category><![CDATA[intuition]]></category>
<category><![CDATA[table technology]]></category>
<category><![CDATA[sql table]]></category>
<category><![CDATA[chache]]></category>
<category><![CDATA[html files]]></category>
<category><![CDATA[sentences]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-performance/</guid>
		<description><![CDATA[(To:) 1, will be so one-to-many relationship set to lazy in the true 2, modified hibernate.properties, an increase of the following two sentences: hibernate.jdbc.fetch_size = 50 hibernate.jdbc.batch_s ...]]></description>
		<content:encoded><![CDATA[(To:) 1, will be so one-to-many relationship set to lazy in the true 2, modified hibernate.properties, an increase of the following two sentences: hibernate.jdbc.fetch_size = 50 hibernate.jdbc.batch_s ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/struts2-spring-hibernate-s-easy-to-integrate/" title="Struts2 Spring Hibernate's easy to integrate">Struts2 Spring Hibernate's easy to integrate</a> 2009-02-27 13:51:59</li>
					<li><a href="http://www.codeweblog.com/how-the-primary-key-agent-hibernate/" title="How the primary key agent-hibernate">How the primary key agent-hibernate</a> 2009-02-27 13:50:24</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/hibernate-cfg-xml-configuration-file-including-the-primary-key-generation-strategy-introduction/" title="Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)">Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)</a> 2009-02-27 10:01:17</li>
					<li><a href="http://www.codeweblog.com/the-ejb3-persistence/" title="The EJB3 Persistence">The EJB3 Persistence</a> 2009-02-27 10:00:26</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-performance/</wfw:commentRss>
	</item>
		<item>
		<title>JDBC</title>
		<link>http://www.codeweblog.com/jdbc/</link>
		<comments>http://www.codeweblog.com/jdbc/#comments</comments>
		<pubDate>Thu, 18 Jun 2009 08:25:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jdbc mysql]]></category>
<category><![CDATA[drivermanager]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[jar file]]></category>
<category><![CDATA[string query]]></category>
<category><![CDATA[times new roman]]></category>
<category><![CDATA[target]]></category>
<category><![CDATA[div]]></category>
<category><![CDATA[page definitions]]></category>
<category><![CDATA[font definitions]]></category>
<category><![CDATA[style definitions]]></category>
<category><![CDATA[page border]]></category>
<category><![CDATA[family auto]]></category>
<category><![CDATA[paper source]]></category>
<category><![CDATA[kerning]]></category>
<category><![CDATA[fareast]]></category>
<category><![CDATA[test id]]></category>
<category><![CDATA[mso]]></category>
<category><![CDATA[footer]]></category>
<category><![CDATA[ideograph]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/jdbc/</guid>
		<description><![CDATA[&lt;! - / * Font Definitions * / @ font-face (font-family: Song; panose-1: 2 1 6 0 3 1 1 1 1 1; mso-font-alt: SimSun; mso-font-charset : 134; mso-generic-font-family: auto; mso-font-pitch: variable; m ...]]></description>
		<content:encoded><![CDATA[&lt;! - / * Font Definitions * / @ font-face (font-family: Song; panose-1: 2 1 6 0 3 1 1 1 1 1; mso-font-alt: SimSun; mso-font-charset : 134; mso-generic-font-family: auto; mso-font-pitch: variable; m ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/java-read-file/" title="java read file">java read file</a> 2009-02-27 12:35:13</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/in-the-servlet-use-bean/" title="In the servlet use Bean">In the servlet use Bean</a> 2009-02-27 10:01:23</li>
					<li><a href="http://www.codeweblog.com/the-ejb3-persistence/" title="The EJB3 Persistence">The EJB3 Persistence</a> 2009-02-27 10:00:26</li>
					<li><a href="http://www.codeweblog.com/can-not-be-represented-as-java-sql-timestamp/" title="can not be represented as java.sql.Timestamp">can not be represented as java.sql.Timestamp</a> 2009-02-27 09:46:14</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/jdbc/</wfw:commentRss>
	</item>
		<item>
		<title>Opening - start from the JDBC</title>
		<link>http://www.codeweblog.com/opening-start-from-the-jdbc/</link>
		<comments>http://www.codeweblog.com/opening-start-from-the-jdbc/#comments</comments>
		<pubDate>Fri, 12 Jun 2009 21:35:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[implementation]]></category>
<category><![CDATA[inquiries]]></category>
<category><![CDATA[jdbc driver]]></category>
<category><![CDATA[localhost]]></category>
<category><![CDATA[drivermanager]]></category>
<category><![CDATA[hsqldb]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[orm]]></category>
<category><![CDATA[getconnection]]></category>
<category><![CDATA[conn]]></category>
<category><![CDATA[java open source]]></category>
<category><![CDATA[novels]]></category>
<category><![CDATA[reflection]]></category>
<category><![CDATA[open source world]]></category>
<category><![CDATA[martial arts]]></category>
<category><![CDATA[object mapping]]></category>
<category><![CDATA[deep foundation]]></category>
<category><![CDATA[hsql]]></category>
<category><![CDATA[tactic]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/opening-start-from-the-jdbc/</guid>
		<description><![CDATA[The use of Java has been more than two years and has never been a study in depth specific things, has been used in any job, and then learn what seems to understand everything that is啥都do not know. Thu ...]]></description>
		<content:encoded><![CDATA[The use of Java has been more than two years and has never been a study in depth specific things, has been used in any job, and then learn what seems to understand everything that is啥都do not know. Thu ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/the-ejb3-persistence/" title="The EJB3 Persistence">The EJB3 Persistence</a> 2009-02-27 10:00:26</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/opening-start-from-the-jdbc/</wfw:commentRss>
	</item>
		<item>
		<title>My cover letter in English</title>
		<link>http://www.codeweblog.com/my-cover-letter-in-english/</link>
		<comments>http://www.codeweblog.com/my-cover-letter-in-english/#comments</comments>
		<pubDate>Thu, 07 May 2009 12:05:01+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[jdbc]]></category>
<category><![CDATA[javabean]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql oracle]]></category>
<category><![CDATA[jsp servlet]]></category>
<category><![CDATA[basic knowledge]]></category>
<category><![CDATA[ms sql]]></category>
<category><![CDATA[java developer]]></category>
<category><![CDATA[weblogic]]></category>
<category><![CDATA[computer science theory]]></category>
<category><![CDATA[dear sir or madam]]></category>
<category><![CDATA[management information system]]></category>
<category><![CDATA[developer engineer]]></category>
<category><![CDATA[hengyang]]></category>
<category><![CDATA[schoolmates]]></category>
<category><![CDATA[s college]]></category>
<category><![CDATA[customer management]]></category>
<category><![CDATA[middle management]]></category>
<category><![CDATA[windows 2003 server]]></category>
<category><![CDATA[cover letter in english]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/my-cover-letter-in-english/</guid>
		<description><![CDATA[Applied For Java Developer Engineer March 23, 2009 Nanhua university Changsheng West on the 28th Hengyang Hunan, China 421001 Dear Sir or Madam: I&#39;m glad to tell you that I&#39;ll be engaged as a  ...]]></description>
		<content:encoded><![CDATA[Applied For Java Developer Engineer March 23, 2009 Nanhua university Changsheng West on the 28th Hengyang Hunan, China 421001 Dear Sir or Madam: I&#39;m glad to tell you that I&#39;ll be engaged as a  ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/jdbc-driver-types/" title="JDBC driver types">JDBC driver types</a> 2009-02-27 12:35:02</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/spring-hibernate-oracle9i-to-read-and-write-clob/" title="spring + hibernate + oracle9i to read and write CLOB">spring + hibernate + oracle9i to read and write CLOB</a> 2009-02-27 11:21:19</li>
					<li><a href="http://www.codeweblog.com/in-the-servlet-use-bean/" title="In the servlet use Bean">In the servlet use Bean</a> 2009-02-27 10:01:23</li>
					<li><a href="http://www.codeweblog.com/hibernate-cfg-xml-configuration-file-including-the-primary-key-generation-strategy-introduction/" title="Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)">Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)</a> 2009-02-27 10:01:17</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/my-cover-letter-in-english/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate configuration parameters</title>
		<link>http://www.codeweblog.com/hibernate-configuration-parameters/</link>
		<comments>http://www.codeweblog.com/hibernate-configuration-parameters/#comments</comments>
		<pubDate>Mon, 04 May 2009 12:00:05+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[configuration parameters]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[database operations]]></category>
<category><![CDATA[entity class]]></category>
<category><![CDATA[database record]]></category>
<category><![CDATA[j2ee applications]]></category>
<category><![CDATA[web development technology]]></category>
<category><![CDATA[foreign key]]></category>
<category><![CDATA[database java]]></category>
<category><![CDATA[enterprise application development]]></category>
<category><![CDATA[unified appearance]]></category>
<category><![CDATA[time parameters]]></category>
<category><![CDATA[query records]]></category>
<category><![CDATA[rational allocation]]></category>
<category><![CDATA[import value]]></category>
<category><![CDATA[database object]]></category>
<category><![CDATA[select show]]></category>
<category><![CDATA[statement 1]]></category>
<category><![CDATA[technology communication]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-configuration-parameters/</guid>
		<description><![CDATA[At J2ee applications, if the Hibernate framework, can be automatically set up the database entities and the Java entity class mapping relations procedures greatly facilitate Java Persistence object ac ...]]></description>
		<content:encoded><![CDATA[At J2ee applications, if the Hibernate framework, can be automatically set up the database entities and the Java entity class mapping relations procedures greatly facilitate Java Persistence object ac ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-primary-key-strategy-sequence/" title="Hibernate primary key strategy-sequence">Hibernate primary key strategy-sequence</a> 2009-02-27 12:34:56</li>
					<li><a href="http://www.codeweblog.com/jdbc-example-of-a-long-time-do-not-have-jdbc-forgot/" title="JDBC example of a long time do not have JDBC forgot">JDBC example of a long time do not have JDBC forgot</a> 2009-02-27 12:34:50</li>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/hibernate-configuration-parameters-hibernate-hbm2ddl-auto/" title="Hibernate configuration parameters hibernate.hbm2ddl.auto">Hibernate configuration parameters hibernate.hbm2ddl.auto</a> 2009-02-27 11:22:24</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-configuration-parameters/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate optimization program</title>
		<link>http://www.codeweblog.com/hibernate-optimization-program/</link>
		<comments>http://www.codeweblog.com/hibernate-optimization-program/#comments</comments>
		<pubDate>Fri, 01 May 2009 07:05:03+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[hql]]></category>
<category><![CDATA[query object]]></category>
<category><![CDATA[query session]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[elements]]></category>
<category><![CDATA[developers]]></category>
<category><![CDATA[best performance]]></category>
<category><![CDATA[int size]]></category>
<category><![CDATA[memory problem]]></category>
<category><![CDATA[sql implementation]]></category>
<category><![CDATA[optimization program]]></category>
<category><![CDATA[bulk insert]]></category>
<category><![CDATA[batch operations]]></category>
<category><![CDATA[data changes]]></category>
<category><![CDATA[necessary time]]></category>
<category><![CDATA[ecosystem]]></category>
<category><![CDATA[spill]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-optimization-program/</guid>
		<description><![CDATA[First, batch modify and delete In Hibernate 2, if necessary for any data to modify and delete operations, are required to execute a query operation, has been at the want to amend or delete data, then  ...]]></description>
		<content:encoded><![CDATA[First, batch modify and delete In Hibernate 2, if necessary for any data to modify and delete operations, are required to execute a query operation, has been at the want to amend or delete data, then  ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/application-of-spring-struts2-0-hibernate-hql/" title="Application of spring struts2.0 hibernate HQL">Application of spring struts2.0 hibernate HQL</a> 2009-02-27 11:20:38</li>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-generic-generic-dao/" title="hibernate generic generic DAO">hibernate generic generic DAO</a> 2009-02-27 09:46:44</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-optimization-program/</wfw:commentRss>
	</item>
		<item>
		<title>hibernate one-to-many inverse mapping of the intelligent property confusion</title>
		<link>http://www.codeweblog.com/hibernate-one-to-many-inverse-mapping-of-the-intelligent-property-confusion/</link>
		<comments>http://www.codeweblog.com/hibernate-one-to-many-inverse-mapping-of-the-intelligent-property-confusion/#comments</comments>
		<pubDate>Thu, 30 Apr 2009 16:50:01+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[confusion]]></category>
<category><![CDATA[lt]]></category>
<category><![CDATA[hashset]]></category>
<category><![CDATA[key column]]></category>
<category><![CDATA[string name]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[test code]]></category>
<category><![CDATA[address address]]></category>
<category><![CDATA[person person]]></category>
<category><![CDATA[class person]]></category>
<category><![CDATA[model address]]></category>
<category><![CDATA[inverse mapping]]></category>
<category><![CDATA[class address]]></category>
<category><![CDATA[person id]]></category>
<category><![CDATA[adddress]]></category>
<category><![CDATA[private person]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-one-to-many-inverse-mapping-of-the-intelligent-property-confusion/</guid>
		<description><![CDATA[We found that the number of sql statements are the same, functions similar, but found at the above two update statements inside, then set up a name like, but the sql statement below shows the more &qu ...]]></description>
		<content:encoded><![CDATA[We found that the number of sql statements are the same, functions similar, but found at the above two update statements inside, then set up a name like, but the sql statement below shows the more &qu ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/the-level-hibernate-cache/" title="The level Hibernate cache">The level Hibernate cache</a> 2009-02-27 09:45:02</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
					<li><a href="http://www.codeweblog.com/collection-of-articles-about-hibernate/" title="Collection of articles about hibernate">Collection of articles about hibernate</a> 2009-02-27 09:43:18</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-one-to-many-inverse-mapping-of-the-intelligent-property-confusion/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate's primary key generation mechanism and the use of SQL statements mysql4.0 recovery problem</title>
		<link>http://www.codeweblog.com/hibernate-s-primary-key-generation-mechanism-and-the-use-of-sql-statements-mysql4-0-recovery-problem/</link>
		<comments>http://www.codeweblog.com/hibernate-s-primary-key-generation-mechanism-and-the-use-of-sql-statements-mysql4-0-recovery-problem/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 15:15:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[apache]]></category>
<category><![CDATA[java sql]]></category>
<category><![CDATA[dbcp]]></category>
<category><![CDATA[pk]]></category>
<category><![CDATA[key generation]]></category>
<category><![CDATA[database structure]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[error message]]></category>
<category><![CDATA[database data]]></category>
<category><![CDATA[generation mechanism]]></category>
<category><![CDATA[garbage data]]></category>
<category><![CDATA[customer database]]></category>
<category><![CDATA[relevant data]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-s-primary-key-generation-mechanism-and-the-use-of-sql-statements-mysql4-0-recovery-problem/</guid>
		<description><![CDATA[Recently, at the time to do the project encountered a problem, customers in the use of Hibernate to insert records to the database always encounter this kind of error message: And this problem at the  ...]]></description>
		<content:encoded><![CDATA[Recently, at the time to do the project encountered a problem, customers in the use of Hibernate to insert records to the database always encounter this kind of error message: And this problem at the  ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/spring-struts2-0-hibernate-environmental-structures-despair-carried-out-more-than-one-hour-only-with-good/" title="spring struts2.0 hibernate environmental structures .. despair carried out more than one hour only with good.">spring struts2.0 hibernate environmental structures .. despair carried out more than one hour only with good.</a> 2009-02-27 09:45:56</li>
					<li><a href="http://www.codeweblog.com/spring2-0-hibernate3-1-log4j-mysql-demo/" title="Spring2.0 + hibernate3.1 + log4j + mysql demo">Spring2.0 + hibernate3.1 + log4j + mysql demo</a> 2009-02-27 09:45:51</li>
					<li><a href="http://www.codeweblog.com/hibernate-annotation-using-notebook/" title="Hibernate annotation using notebook">Hibernate annotation using notebook</a> 2009-02-27 09:45:46</li>
					<li><a href="http://www.codeweblog.com/spring-struts2-0-hibernate-bug-killer-1/" title="spring struts2.0 hibernate bug killer 1">spring struts2.0 hibernate bug killer 1</a> 2009-02-27 09:43:23</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-s-primary-key-generation-mechanism-and-the-use-of-sql-statements-mysql4-0-recovery-problem/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate Session Introduction</title>
		<link>http://www.codeweblog.com/hibernate-session-introduction/</link>
		<comments>http://www.codeweblog.com/hibernate-session-introduction/#comments</comments>
		<pubDate>Mon, 13 Apr 2009 10:35:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[implementation]]></category>
<category><![CDATA[map]]></category>
<category><![CDATA[databases]]></category>
<category><![CDATA[persistent object]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[existence]]></category>
<category><![CDATA[query methods]]></category>
<category><![CDATA[property changes]]></category>
<category><![CDATA[stack overflow]]></category>
<category><![CDATA[suitable occasions]]></category>
<category><![CDATA[interface session]]></category>
<category><![CDATA[clearing cache]]></category>
<category><![CDATA[object relationship]]></category>
<category><![CDATA[database trigger]]></category>
<category><![CDATA[session introduction]]></category>
<category><![CDATA[relevant records]]></category>
<category><![CDATA[points in time]]></category>
<category><![CDATA[database service]]></category>
<category><![CDATA[point in time]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-session-introduction/</guid>
		<description><![CDATA[First, session interface Session interface hibernate are provided to the application&#39;s main interface to manipulate the database, it provides the basic preservation, update, delete, query methods. ...]]></description>
		<content:encoded><![CDATA[First, session interface Session interface hibernate are provided to the application&#39;s main interface to manipulate the database, it provides the basic preservation, update, delete, query methods. ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/struts2-hibernate-spring-problem-user-log-in/" title="Struts2 + hibernate + spring problem user log in">Struts2 + hibernate + spring problem user log in</a> 2009-02-27 09:45:41</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-session-introduction/</wfw:commentRss>
	</item>
		<item>
		<title>hibernate optimistic locking and pessimistic locking (1)</title>
		<link>http://www.codeweblog.com/hibernate-optimistic-locking-and-pessimistic-locking-1/</link>
		<comments>http://www.codeweblog.com/hibernate-optimistic-locking-and-pessimistic-locking-1/#comments</comments>
		<pubDate>Fri, 10 Apr 2009 01:35:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[access to data]]></category>
<category><![CDATA[implementation]]></category>
<category><![CDATA[assumption]]></category>
<category><![CDATA[query session]]></category>
<category><![CDATA[concurrent accesses]]></category>
<category><![CDATA[conservative attitude]]></category>
<category><![CDATA[database level]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[time line]]></category>
<category><![CDATA[outsiders]]></category>
<category><![CDATA[consistency]]></category>
<category><![CDATA[submission]]></category>
<category><![CDATA[erica]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-optimistic-locking-and-pessimistic-locking-1/</guid>
		<description><![CDATA[1. Pessimistic lock It refers to the modification of data by outsiders hold a conservative attitude. The assumption that at any time access to data, may also have another client to access the same dat ...]]></description>
		<content:encoded><![CDATA[1. Pessimistic lock It refers to the modification of data by outsiders hold a conservative attitude. The assumption that at any time access to data, may also have another client to access the same dat ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/java-technology-eclipse-explain-the-use-of-techniques/" title="Java technology: Eclipse explain the use of techniques">Java technology: Eclipse explain the use of techniques</a> 2009-02-27 09:46:30</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
					<li><a href="http://www.codeweblog.com/great-collection-of-java-interview-topics/" title="Great collection of java interview topics">Great collection of java interview topics</a> 2009-02-27 09:44:32</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-optimistic-locking-and-pessimistic-locking-1/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate caching mechanisms</title>
		<link>http://www.codeweblog.com/hibernate-caching-mechanisms/</link>
		<comments>http://www.codeweblog.com/hibernate-caching-mechanisms/#comments</comments>
		<pubDate>Thu, 09 Apr 2009 07:25:02+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[storage memory]]></category>
<category><![CDATA[second level cache]]></category>
<category><![CDATA[secondary cache]]></category>
<category><![CDATA[persistence layer]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[buffer zone]]></category>
<category><![CDATA[data cache]]></category>
<category><![CDATA[cache memory]]></category>
<category><![CDATA[query data]]></category>
<category><![CDATA[cache data]]></category>
<category><![CDATA[service scope]]></category>
<category><![CDATA[external hard disk]]></category>
<category><![CDATA[source retrieval]]></category>
<category><![CDATA[memory region]]></category>
<category><![CDATA[external cache]]></category>
<category><![CDATA[disk storage]]></category>
<category><![CDATA[temporary storage]]></category>
<category><![CDATA[data mapping]]></category>
<category><![CDATA[storage medium]]></category>
<category><![CDATA[storage devices]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-caching-mechanisms/</guid>
		<description><![CDATA[Cache is located in applications and physical data sources for the copy data temporary storage memory region, the purpose of the application in order to reduce the physical data sources for the number ...]]></description>
		<content:encoded><![CDATA[Cache is located in applications and physical data sources for the copy data temporary storage memory region, the purpose of the application in order to reduce the physical data sources for the number ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/what-is-the-appfuse/" title="What is the appfuse">What is the appfuse</a> 2009-02-27 10:02:10</li>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-secondary-cache/" title="Hibernate secondary cache">Hibernate secondary cache</a> 2009-02-27 09:45:24</li>
					<li><a href="http://www.codeweblog.com/the-level-hibernate-cache/" title="The level Hibernate cache">The level Hibernate cache</a> 2009-02-27 09:45:02</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-caching-mechanisms/</wfw:commentRss>
	</item>
		<item>
		<title>hibernate mapping inverse and cascade Collection Detailed</title>
		<link>http://www.codeweblog.com/hibernate-mapping-inverse-and-cascade-collection-detailed/</link>
		<comments>http://www.codeweblog.com/hibernate-mapping-inverse-and-cascade-collection-detailed/#comments</comments>
		<pubDate>Mon, 30 Mar 2009 17:50:03+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[implementation]]></category>
<category><![CDATA[pojo]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[consistency]]></category>
<category><![CDATA[two tables]]></category>
<category><![CDATA[relationship]]></category>
<category><![CDATA[database operations]]></category>
<category><![CDATA[bridge]]></category>
<category><![CDATA[execution]]></category>
<category><![CDATA[cascade collection]]></category>
<category><![CDATA[address school]]></category>
<category><![CDATA[school id]]></category>
<category><![CDATA[set address]]></category>
<category><![CDATA[party 3]]></category>
<category><![CDATA[school address]]></category>
<category><![CDATA[aggregate]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-mapping-inverse-and-cascade-collection-detailed/</guid>
		<description><![CDATA[# Assume that there is a relationship between the table ADDRESS_SCHOOL, has two fields ADDRESS_ID, SCHOOL_ID, # The two fields corresponding to ADDRESS and the key two tables SCHOOL (11) insert the SQ ...]]></description>
		<content:encoded><![CDATA[# Assume that there is a relationship between the table ADDRESS_SCHOOL, has two fields ADDRESS_ID, SCHOOL_ID, # The two fields corresponding to ADDRESS and the key two tables SCHOOL (11) insert the SQ ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/nan-jing-5-when-ibatis-hibernate-mixed-affairs-pay-attention-to-your-sql/" title="Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL">Nan-Jing 5: When IBatis.Hibernate mixed affairs, pay attention to your SQL</a> 2009-02-27 10:01:47</li>
					<li><a href="http://www.codeweblog.com/hibernate-cfg-xml-configuration-file-including-the-primary-key-generation-strategy-introduction/" title="Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)">Hibernate.cfg.xml configuration file (including the primary key generation strategy Introduction)</a> 2009-02-27 10:01:17</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-mapping-inverse-and-cascade-collection-detailed/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate easy extract</title>
		<link>http://www.codeweblog.com/hibernate-easy-extract/</link>
		<comments>http://www.codeweblog.com/hibernate-easy-extract/#comments</comments>
		<pubDate>Mon, 02 Mar 2009 12:05:14+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[database connection]]></category>
<category><![CDATA[jdbc driver]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[application servers]]></category>
<category><![CDATA[connection pool management]]></category>
<category><![CDATA[interface domain]]></category>
<category><![CDATA[pool technology]]></category>
<category><![CDATA[relevant parameters]]></category>
<category><![CDATA[access interface]]></category>
<category><![CDATA[oriented package]]></category>
<category><![CDATA[domain object]]></category>
<category><![CDATA[abnormal state]]></category>
<category><![CDATA[object mode]]></category>
<category><![CDATA[resources system]]></category>
<category><![CDATA[socket connection]]></category>
<category><![CDATA[comprehensive management]]></category>
<category><![CDATA[database servers]]></category>
<category><![CDATA[package names]]></category>
<category><![CDATA[database access]]></category>
<category><![CDATA[database server]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-easy-extract/</guid>
		<description><![CDATA[Simple terms the following excerpt from hibernate: DAO mode, the database access layer implementation is hidden to the Data Accessor, the front said, DAO mode are in fact a combination of two modes, n ...]]></description>
		<content:encoded><![CDATA[Simple terms the following excerpt from hibernate: DAO mode, the database access layer implementation is hidden to the Data Accessor, the front said, DAO mode are in fact a combination of two modes, n ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/" title="Hibernate pessimistic locking mechanism for locking and optimistic locking">Hibernate pessimistic locking mechanism for locking and optimistic locking</a> 2009-02-27 12:33:53</li>
					<li><a href="http://www.codeweblog.com/spring-hibernate-to-use-glassfish-database-connection-pool/" title="Spring + Hibernate to use Glassfish Database Connection Pool">Spring + Hibernate to use Glassfish Database Connection Pool</a> 2009-02-27 11:21:06</li>
					<li><a href="http://www.codeweblog.com/the-ejb3-persistence/" title="The EJB3 Persistence">The EJB3 Persistence</a> 2009-02-27 10:00:26</li>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/spring-struts2-0-hibernate-environmental-structures-despair-carried-out-more-than-one-hour-only-with-good/" title="spring struts2.0 hibernate environmental structures .. despair carried out more than one hour only with good.">spring struts2.0 hibernate environmental structures .. despair carried out more than one hour only with good.</a> 2009-02-27 09:45:56</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-easy-extract/</wfw:commentRss>
	</item>
		<item>
		<title>Hibernate pessimistic locking mechanism for locking and optimistic locking</title>
		<link>http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/</link>
		<comments>http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/#comments</comments>
		<pubDate>Fri, 27 Feb 2009 12:33:53+0000</pubDate>
		<dc:creator>CodeWeblog.com</dc:creator>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[access to data]]></category>
<category><![CDATA[implementation]]></category>
<category><![CDATA[assumption]]></category>
<category><![CDATA[query session]]></category>
<category><![CDATA[concurrent accesses]]></category>
<category><![CDATA[conservative attitude]]></category>
<category><![CDATA[database level]]></category>
<category><![CDATA[access time]]></category>
<category><![CDATA[sql statements]]></category>
<category><![CDATA[sql statement]]></category>
<category><![CDATA[time line]]></category>
<category><![CDATA[outsiders]]></category>
<category><![CDATA[consistency]]></category>
<category><![CDATA[submission]]></category>
		<guid isPermaLink="true">http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/</guid>
		<description><![CDATA[hibernate lock mechanism 1. Pessimistic lock It refers to the modification of data by outsiders hold a conservative attitude. The assumption that at any time access to data, may also have another clie ...]]></description>
		<content:encoded><![CDATA[hibernate lock mechanism 1. Pessimistic lock It refers to the modification of data by outsiders hold a conservative attitude. The assumption that at any time access to data, may also have another clie ...				<h5>Related Posts</h5>
		<div id="smilar">
		<ul>
					<li><a href="http://www.codeweblog.com/hibernate-to-use-the-principle-of/" title="hibernate to use the principle of">hibernate to use the principle of</a> 2009-02-27 09:47:00</li>
					<li><a href="http://www.codeweblog.com/java-technology-eclipse-explain-the-use-of-techniques/" title="Java technology: Eclipse explain the use of techniques">Java technology: Eclipse explain the use of techniques</a> 2009-02-27 09:46:30</li>
					<li><a href="http://www.codeweblog.com/based-on-jdbc-jpa-annotation-achieve-simple-crud-generic-dao/" title="Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao">Based on JDBC, JPA Annotation achieve simple CRUD Generic Dao</a> 2009-02-27 09:45:34</li>
					<li><a href="http://www.codeweblog.com/hibernate-s-lazy-strategy/" title="Hibernate's lazy strategy">Hibernate's lazy strategy</a> 2009-02-27 09:44:43</li>
					<li><a href="http://www.codeweblog.com/great-collection-of-java-interview-topics/" title="Great collection of java interview topics">Great collection of java interview topics</a> 2009-02-27 09:44:32</li>
				</ul>
		</div>
		        ]]></content:encoded>
		<wfw:commentRss>http://www.codeweblog.com/hibernate-pessimistic-locking-mechanism-for-locking-and-optimistic-locking/</wfw:commentRss>
	</item>
	</channel>
</rss>
